001 package railo.runtime.functions.gateway; 002 003 import railo.runtime.PageContext; 004 import railo.runtime.exp.ExpressionException; 005 import railo.runtime.exp.FunctionNotSupported; 006 import railo.runtime.ext.function.Function; 007 008 /** 009 * Decodes Binary Data that are encoded as String 010 */ 011 public final class GetGatewayHelper implements Function { 012 013 // TODO impl. Function GetGatewayHelper 014 public static Object call(PageContext pc, String gatewayID) throws ExpressionException { 015 throw new FunctionNotSupported("GetGatewayHelper"); 016 } 017 }