com.github.earchitecture.reuse.model.entity.Identifiable Maven / Gradle / Ivy
The newest version!
package com.github.earchitecture.reuse.model.entity;
import java.io.Serializable;
/**
* Descreve metodo e operação para primary key.
*
* @param
* Tipo da PK (Primary Key)
*/
public interface Identifiable extends Serializable {
/**
* Retorna o valor do objeto de Primary Key do objeto.
*
* @return Objeto que implementa {@link Serializable}
*/
I getId();
/**
* Atribui o valor do id do objeto.
*
* @param id
* id do objeto.
*/
void setId(I id);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy