com.konakartadmin.blif
Interface AdminExecuteMgrIf

All Known Implementing Classes:
AdminExecuteMgr

public interface AdminExecuteMgrIf

AdminExecuteMgrIf


Method Summary
 java.lang.String execute(java.lang.String className, java.lang.String methodName, java.lang.String[] paramArray)
          Executes a method with name methodName of a class with name className with the parameters of type String in paramArray.
 

Method Detail

execute

java.lang.String execute(java.lang.String className,
                         java.lang.String methodName,
                         java.lang.String[] paramArray)
                         throws java.lang.Exception
Executes a method with name methodName of a class with name className with the parameters of type String in paramArray. If the method has parameters, then they must be of type String. The order of the parameters in the array must match the order of the parameters in the method. i.e. myMethod(String p1, String p2) needs to receive an array where p1 is in index 0 and p2 in index 1. The method must return a String which may be null.

Parameters:
className - The fully qualified className
methodName - The name of the method to be executes
paramArray - The parameters passed to the method
Returns:
Returns a String
Throws:
java.lang.Exception


Copyright © 2011 DS Data Systems UK Ltd.