Package com.baasbox.dao

Examples of com.baasbox.dao.ScriptsDao


    }


    public static Boolean activate(String name, boolean activate) {
        updateCacheVersion();
        ScriptsDao dao = ScriptsDao.getInstance();
        ODocument doc = dao.getByName(name);
        if (doc == null){
            return null;
        }
        return dao.activate(doc,activate);
    }
View Full Code Here

TOP

Related Classes of com.baasbox.dao.ScriptsDao

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.