Example usage for org.springframework.data.domain Persistable interface-usage

List of usage examples for org.springframework.data.domain Persistable interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.domain Persistable interface-usage.

Usage

From source file com.yuanbao.crm.common.entity.AbstractEntity.java

/**
 * ?? {@link BaseEntity}Oracle {@link BaseOracleEntity}
 * <p/>
 * <p>User: Zhang Kaitao
 * <p>Date: 13-3-20 ?8:38
 * <p>Version: 1.0

From source file org.obiba.mica.core.domain.AbstractGitPersistable.java

public abstract class AbstractGitPersistable implements GitPersistable, Persistable<String>, Identified {

    private static final long serialVersionUID = -5039056351334888684L;

    private String id;

From source file org.bremersee.common.domain.mongodb.entity.AbstractBaseMongo.java

/**
 * @author Christian Bremer
 *
 */
@Data
@NoArgsConstructor

From source file com.sdl.odata.example.persistent.entities.AbstractEntity.java

/**
 * Base entity class.
 */
@MappedSuperclass
public abstract class AbstractEntity implements Persistable<String> {
    private static final long serialVersionUID = 1L;

From source file com.acme.model.AbstractPersistable.java

/**
 * Abstract base class for entities. Allows parameterization of id type, chooses auto-generation and implements
 * {@link #equals(Object)} and {@link #hashCode()} based on that id.
 * 
 * @author Oliver Gierke
 * @param <PK> the the of the entity

From source file org.bremersee.common.domain.jpa.entity.AbstractBaseJpa.java

/**
 * @author Christian Bremer
 *
 */
@MappedSuperclass
@EntityListeners(AuditingEntityListener.class)

From source file br.com.modoagil.asr.model.support.AbstractEntity.java

/**
 * Abstract entity for JPA entity<br />
 *
 * All JPA entities from model must extend this class or a sub-class
 *
 * @since 07/12/2014

From source file org.awesomeagile.model.AbstractPersistable.java

/**
 * @author sbelov@google.com (Stan Belov)
 */
@MappedSuperclass
public class AbstractPersistable<PK extends Serializable> implements Persistable<PK> {

From source file edu.hiro.util.AbstractPersistable.java

/**
 * Abstract base class for entities. Allows parameterization of id type, chooses auto-generation and implements
 * {@link #equals(Object)} and {@link #hashCode()} based on that id.
 * 
 * @author Oliver Gierke
 * @param <PK> the the of the entity

From source file org.lazulite.boot.autoconfigure.core.entity.BaseEntity.java

@MappedSuperclass
public abstract class BaseEntity<ID extends Serializable> implements Persistable<ID> {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    //@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "seq")