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

com.evasion.EntityJPA Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy