Package railo.runtime.exp

Examples of railo.runtime.exp.FunctionNotSupported


* Implements the CFML Function AjaxLink
*/
public final class AjaxLink implements Function {
 
  public static String call(PageContext pc , String url) throws PageException {
    throw new FunctionNotSupported("AjaxLink");
  }
View Full Code Here


* Implements the CFML Function AjaxLink
*/
public final class AjaxOnLoad implements Function {
 
  public static String call(PageContext pc , String functionName) throws PageException {
    throw new FunctionNotSupported("AjaxOnLoad");
  }
View Full Code Here

import railo.runtime.exp.PageException;
import railo.runtime.ext.function.Function;

public final class DotNetToCFType implements Function {
  public static Object call(PageContext pc , Object input) throws PageException {
    throw new FunctionNotSupported("DotNetToCFType");
  }
View Full Code Here

import railo.runtime.exp.FunctionNotSupported;
import railo.runtime.ext.function.Function;

public final class GetException implements Function {
  public static java.lang.Throwable call(PageContext pc , Object object) throws ExpressionException {
    throw new FunctionNotSupported("getexception");
  }
View Full Code Here

*/
public final class GetGatewayHelper implements Function {
 
//   TODO impl. Function GetGatewayHelper
  public static Object call(PageContext pc, String gatewayID) throws ExpressionException {
    throw new FunctionNotSupported("GetGatewayHelper");
  }
View Full Code Here

import railo.runtime.ext.function.Function;
import railo.runtime.type.Struct;

public final class GetPrinterInfo implements Function {
  public static Struct call(PageContext pc , String printer) throws PageException {
        throw new FunctionNotSupported("GetPrinterInfo");
  }
View Full Code Here

          "must be (com, java, webservice or component) other types are not supported");
   
  }

    private static Object doDotNet(PageContext pc, String className) throws FunctionNotSupported {
      throw new FunctionNotSupported("CreateObject","type .net");
  }
View Full Code Here

import railo.runtime.exp.FunctionNotSupported;
import railo.runtime.ext.function.Function;

public final class IsDDX implements Function {
  public static boolean call(PageContext pc , String strOrPath) throws FunctionNotSupported {
    throw new FunctionNotSupported("IsDDX");
  }
View Full Code Here

import railo.runtime.exp.FunctionNotSupported;
import railo.runtime.ext.function.Function;

public final class IsPDFFile implements Function {
  public static boolean call(PageContext pc , String path) throws FunctionNotSupported {
    throw new FunctionNotSupported("IsPDFFile");
  }
View Full Code Here

import railo.runtime.ext.function.Function;

public final class VerifyClient implements Function {
   
    public static String call(PageContext pc) throws FunctionNotSupported {
      throw new FunctionNotSupported("VerifyClient");
    }
View Full Code Here

TOP

Related Classes of railo.runtime.exp.FunctionNotSupported

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.