com.evasion.EntityJPA Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of API Show documentation
Show all versions of API Show documentation
API de l'application modulaire evasion-en-ligne
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion;
import java.io.Serializable;
/**
*
* @author sebastien
*/
public abstract class EntityJPA implements Serializable {
public static final int DEFAULT_STRING_LENGTH = 50;
public static final String ENTITY_NAME = null;
public static final String ID = "id";
/**
* Getter de l'ID technique.
* @return ID technique.
*/
public abstract T getId();
public abstract void setId(T id);
}