Back to project page baracus-framework.
The source code is released under:
Apache License
If you think the Android project baracus-framework listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.mantucon.baracus.orm; // w w w .j a v a2s. c o m /** * Created with IntelliJ IDEA. * User: marcus * Date: 24.09.12 * Time: 07:31 * <p/> * Interface indicating that your entity bean is identifiable by a standard long id. * All deriving classes of AbstractModelBase will be identifiable, having a surrogate long id. */ public interface Identifiable { public Long getId(); public void setId(Long id); }