Package railo.runtime.functions.system

Source Code of railo.runtime.functions.system.ApplicationStop

package railo.runtime.functions.system;

import railo.runtime.CFMLFactoryImpl;
import railo.runtime.PageContext;
import railo.runtime.exp.PageException;
import railo.runtime.type.scope.ScopeContext;

public class ApplicationStop {
  public static String call(PageContext pc) throws PageException {
    CFMLFactoryImpl factory = (CFMLFactoryImpl)pc.getCFMLFactory();
    ScopeContext sc = factory.getScopeContext();
    sc.clearApplication(pc);
    return null;
  }
}
TOP

Related Classes of railo.runtime.functions.system.ApplicationStop

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.