com.ibm.di.fc.webservice
Class WrapSoap

java.lang.Object
  extended by com.ibm.di.fc.Function
      extended by com.ibm.di.fc.webservice.WrapSoap
All Implemented Interfaces:
FunctionInterface, VersionInfoInterface

public class WrapSoap
extends Function


Field Summary
 
Fields inherited from class com.ibm.di.fc.Function
logger
 
Constructor Summary
WrapSoap()
           
 
Method Summary
 String getVersion()
           
 void initialize(Object obj)
          This method is/should be called once after the object has been given its configuration
 Object perform(Object obj)
          This is the main method of a Function Component.
 
Methods inherited from class com.ibm.di.fc.Function
debug, getConfiguration, getContext, getLog, getParam, getUI, initialize, logmsg, setConfiguration, setContext, setLog, setParam, terminate, updateSchema, verifyInitialized
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WrapSoap

public WrapSoap()
Method Detail

initialize

public void initialize(Object obj)
                throws Exception
Description copied from class: Function
This method is/should be called once after the object has been given its configuration

Specified by:
initialize in interface FunctionInterface
Overrides:
initialize in class Function
Parameters:
obj - this object provides information to the Function Component needed on initialization
Throws:
Exception - An exception is thrown if the initialization fails.

perform

public Object perform(Object obj)
               throws Exception
Description copied from interface: FunctionInterface
This is the main method of a Function Component. This method is called for the Function Component to actually do its job. The implementation of this methods performs the function which the Function Component was created to do.

Parameters:
obj - the input to the function
Returns:
the output from the function
Throws:
Exception - An exception is thrown if this method fails.

getVersion

public String getVersion()