public interface GeneralProcessConnectionInterface2 {

    // Initialization logic before the script is executed
    public void init();

    // Cleanup logic after the script is done
    public void dispose();

    // Return true only for the function names you want to process
    public boolean isProcessable(String functionName);

    // Implement the logic to be executed when VCSSL calls the function
    public String[] process(String functionName, String[] args);
}