Example usage for org.hibernate.classic Lifecycle interface-usage

List of usage examples for org.hibernate.classic Lifecycle interface-usage

Introduction

In this page you can find the example usage for org.hibernate.classic Lifecycle interface-usage.

Usage

From source file com.maydesk.base.model.MBase.java

/**
 * @author Alejandro Salas
 */
@MappedSuperclass
public abstract class MBase implements Lifecycle {

From source file models.db.MetaData.java

@MappedSuperclass
public abstract class MetaData implements Lifecycle, Serializable, Cloneable, Comparable {

    private static final long serialVersionUID = 1L;

    public MetaData clone() {

From source file no.abmu.user.domain.User.java

/**
 * This class represents a user in the system.
 *
 * @author Erik Romson, erik@zenior.no
 * @author $Author: jens $
 * @version $Rev: 13026 $

From source file org.archiviststoolkit.mydomain.DomainBasicObject.java

/**
 * The DomainObject should be the base class of all data types which
 * we wish to store in our hibernate based database.
 * TODO: Integer should be a Long identifier within hibernate
 */

From source file org.archiviststoolkit.mydomain.DomainObject.java

/**
 * The DomainObject should be the base class of all data types which
 * we wish to store in our hibernate based database.
 * TODO: Integer should be a Long identifier within hibernate
 */

From source file org.jboss.dashboard.ui.resources.GraphicElement.java

/**
 * This class represents a graphic element, that is a Skin, an Envelope, or a Layout
 */
public abstract class GraphicElement implements Cloneable, Serializable, ResourceHolder, Lifecycle, Visitable {
    private static transient org.slf4j.Logger log = org.slf4j.LoggerFactory
            .getLogger(GraphicElement.class.getName());

From source file org.transitime.db.structs.ArrivalDeparture.java

/**
 * For persisting an Arrival or a Departure time. Should use Arrival or
 * Departure subclasses.
 * <p>
 * Implements Lifecycle so that can have the onLoad() callback be called when
 * reading in data so that can intern() member strings. In order to do this the

From source file org.transitime.db.structs.Match.java

/**
 * For persisting the match for the vehicle. This data is later used
 * for determining expected travel times. The key/IDs for the table
 * are vehicleId and the AVL avlTime so that the Match data can easily
 * be joined with AvlReport data to get additional information.
 * <p>

From source file org.transitime.db.structs.PredictionAccuracy.java

/**
 * A database object for persisting information on how accurate a prediction was
 * compared to the actual measured arrival/departure time for the vehicle.
 * <p>
 * Serializable since Hibernate requires such.
 * <p>

From source file org.transitime.db.structs.StopPath.java

/**
 * A StopPath is a set of points that defines how a vehicle gets from one stop
 * to another. The stops do not necessarily lie directly on the segments since
 * the segments are likely to be street center line data while the stops are
 * usually on the sidewalk.
 *