
br.com.caelum.vraptor.boilerplate.SimpleIdentifiable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vraptor-boilerplate-utils Show documentation
Show all versions of vraptor-boilerplate-utils Show documentation
VRaptor Boilerplate utility classes.
The newest version!
package br.com.caelum.vraptor.boilerplate;
import java.io.Serializable;
/**
* Simple identifiable interface. This enables some default methods that needs an ID.
*
* @author Renato R. R. de Oliveira
*
*/
public interface SimpleIdentifiable extends Serializable {
public Long getId();
public void setId(Long id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy