001 package railo.runtime.db; 002 003 /** 004 * a ZQL Function 005 */ 006 public interface ZQLFunction { 007 008 /** 009 * method to call the funtion 010 * @param arguments arguments to call the funtion 011 * @return result of the function 012 */ 013 public Object call(Object[] arguments); 014 }