Package railo.runtime.functions.orm

Source Code of railo.runtime.functions.orm.ORMGetSessionFactory

package railo.runtime.functions.orm;

import railo.runtime.PageContext;
import railo.runtime.exp.PageException;
import railo.runtime.orm.ORMEngine;
import railo.runtime.orm.ORMUtil;

public class ORMGetSessionFactory {
  public static Object call(PageContext pc) throws PageException {
    ORMEngine engine= ORMUtil.getEngine(pc);
    return engine.getSessionFactory(pc);
  }
}
TOP

Related Classes of railo.runtime.functions.orm.ORMGetSessionFactory

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.