Package org.blueoxygen.postila.entity

Examples of org.blueoxygen.postila.entity.Model


    public void insertToModel(String name, String className, String order){
        LogInformation log = new LogInformation();
        log.setActiveFlag(1);
        log.setCreateDate(new Timestamp(System.currentTimeMillis()));
        log.setLastUpdateDate(new Timestamp(System.currentTimeMillis()));
        Model mo = new Model();
        mo.setName(name);
        mo.setClassName(className);
        mo.setOrderValue(order);
        mo.setLogInformation(log);
       
        System.out.print("==========================================================\n" +
                "Name = "+name+" \n" +
                "Class = "+ className+"\n");
        sess.save(mo);
View Full Code Here

TOP

Related Classes of org.blueoxygen.postila.entity.Model

Copyright © 2018 www.massapicom. 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.