Package com.baasbox.dao

Examples of com.baasbox.dao.ScriptsDao.activate()


        ScriptsDao dao = ScriptsDao.getInstance();
        ODocument doc = dao.getByName(name);
        if (doc == null){
            return null;
        }
        return dao.activate(doc,activate);
    }

    public static ScriptResult invoke(ScriptCall call) throws ScriptEvalException{
        if (Logger.isDebugEnabled()) Logger.debug("Invoking script: " + call.scriptName);
        MAIN.set(call.scriptName);
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.