Package railo.runtime.functions.gateway

Source Code of railo.runtime.functions.gateway.GetGatewayHelper

package railo.runtime.functions.gateway;

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

/**
* Decodes Binary Data that are encoded as String
*/
public final class GetGatewayHelper implements Function {
 
//   TODO impl. Function GetGatewayHelper
  public static Object call(PageContext pc, String gatewayID) throws ExpressionException {
    throw new FunctionNotSupported("GetGatewayHelper");
  }
}
TOP

Related Classes of railo.runtime.functions.gateway.GetGatewayHelper

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.