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

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

Introduction

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

Usage

From source file org.tylproject.data.mongo.common.Footprint.java

/**
 * Created with IntelliJ IDEA.
 * User: marco
 * Date: 18/11/14
 * Time: 22:37
 */

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

public abstract class AbstractAuditableDocument implements Auditable<String, String>, Timestamped, Identified {

    private static final long serialVersionUID = -5039056351334888684L;

    @Id
    private String id;

From source file org.springbyexample.contact.orm.entity.AbstractAuditableEntity.java

/**
 * Abstract auditable entity.
 * 
 * @author David Winterfeldt
 */
@MappedSuperclass

From source file am.ik.categolj2.domain.model.AbstractAuditableEntiry.java

@MappedSuperclass
public abstract class AbstractAuditableEntiry<T extends Serializable> extends AbstractEntity
        implements Auditable<String, T> {
    private static final long serialVersionUID = 1L;
    @Column(name = "CREATED_DATE")
    @Type(type = "org.jadira.usertype.dateandtime.joda.PersistentDateTime")

From source file org.devgateway.toolkit.persistence.dao.AbstractAuditableEntity.java

/**
 * 
 * @author mpostelnicu
 *
 */
@MappedSuperclass

From source file de.kaiserpfalzEdv.infopir.backend.db.AuditedBaseEntity.java

/**
 * Entities that need information about the users who created them or modified them the last time.
 *
 * @author klenkes
 * @version 2015Q1
 * @since 06.09.15 08:06

From source file com.home.ln_spring.ch10.domain.ContactAudit.java

/**
 *
 * @author vitaliy
 */
@Entity
@Table(name = "contact_audit")

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

/**
 * Abstract base class for auditable entities. Stores the audition values in persistent fields.
 * 
 * @author Oliver Gierke
 * @param <U> the auditing type. Typically some kind of user.
 * @param <PK> the type of the auditing type's idenifier

From source file org.unidle.domain.BaseEntity.java

@Cacheable
@MappedSuperclass
public class BaseEntity implements Auditable<User, UUID>, Serializable {

    @JoinColumn(name = "created_by_user_uuid")
    @ManyToOne