Showing posts with label hebirnate. Show all posts
Showing posts with label hebirnate. Show all posts

Tuesday, June 2, 2015

JAVA GWT - entity persistence approach

== IDENTITY ==
import java.io.Serializable;

public interface Identity<T extends Serializable> extends Serializable{
    T getId();
    void setId(T id);
}