Package coldfusion.runtime

Examples of coldfusion.runtime.TemplateProxy


   * @param path the path to the CFC that this proxy wraps.
   * @throws Throwable
   */
  private CFCDynamicProxy(String path) throws Throwable
  {
    TemplateProxy cfc = TemplateProxyFactory.resolveFile(FusionContext.getCurrent().pageContext, new File(path), null);
   
    setCFC(cfc);
  }
View Full Code Here


   * @param file A file that points to the CFC this proxy will wrap.
   * @throws Throwable
   */
  private CFCDynamicProxy(File file) throws Throwable
  {
    TemplateProxy cfc = TemplateProxyFactory.resolveFile(FusionContext.getCurrent().pageContext, file, null);
   
    setCFC(cfc);
  }
View Full Code Here

   * @param path the path to the CFC that this proxy wraps.
   * @throws Throwable
   */
  private CFCDynamicProxy(String path) throws Throwable
  {
    TemplateProxy cfc = TemplateProxyFactory.resolveFile(FusionContext.getCurrent().pageContext, new File(path), null);
   
    configure(cfc);
  }
View Full Code Here

   * @param file A file that points to the CFC this proxy will wrap.
   * @throws Throwable
   */
  private CFCDynamicProxy(File file) throws Throwable
  {
    TemplateProxy cfc = TemplateProxyFactory.resolveFile(FusionContext.getCurrent().pageContext, file, null);
   
    configure(cfc);
  }
View Full Code Here

TOP

Related Classes of coldfusion.runtime.TemplateProxy

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.