Examples of VersionColumn


Examples of org.javalite.activejdbc.annotations.VersionColumn

        this.modelClass = modelClass;
        this.dbType = dbType;
        this.cached = cached;
        this.dbName = dbName;
        this.idGeneratorCode = idGeneratorCode;
        VersionColumn vc = modelClass.getAnnotation(VersionColumn.class);
        if(vc != null){
            versionColumn = vc.value();
        }else{
            versionColumn = "record_version";
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.