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; /** * Created by marcus on 03.07.14. */ public interface OptmisticLocking { int getVersion(); void setVersion(int newVersion); }