All Downloads are FREE. Search and download functionalities are using the official Maven repository.

play.db.jpa.Model Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package play.db.jpa;

import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;

/**
 * Base class for JPA model objects
 * Automatically provide a @Id Long id field
 */
@MappedSuperclass
public class Model extends GenericModel {

    @Id
    @GeneratedValue
    public Long id;

    public Long getId() {
        return id;
    }

    @Override
    public Object _key() {
        return getId();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy