Uses of Interface
com.ibm.di.fc.FunctionInterface

Packages that use FunctionInterface
com.ibm.di.fc   
com.ibm.di.fc.castorbind   
com.ibm.di.fc.cbe   
com.ibm.di.fc.emf   
com.ibm.di.fc.remotecmdlnfc   
com.ibm.di.fc.rxaunittests   
com.ibm.di.fc.sapr3rfc   
com.ibm.di.fc.webservice   
com.ibm.di.function   
com.ibm.di.server   
 

Uses of FunctionInterface in com.ibm.di.fc
 

Classes in com.ibm.di.fc that implement FunctionInterface
 class AssemblyLineFC
          This is a function component that calls an AssemblyLine(AL) on a local or remote server.
 class Function
          This abstract class contains a default implementation of all methods in the FunctionInterface except the the perform(obj) method.
 class JavaClassFC
           
 class MemBufferQFC
          Deprecated. Use com.ibm.di.connector.MemQConnector or API
 class ParserFC
          This is a function component that wraps parser operations.
 class ScriptedFC
          This is a function component that relays FC operations to a user defined script.
 class SendEMailFC
           
 class zOSTSOCommandLine
           
 

Uses of FunctionInterface in com.ibm.di.fc.castorbind
 

Classes in com.ibm.di.fc.castorbind that implement FunctionInterface
 class CastorJavaToXML
          This is the CastorJavaToXML class.
 class CastorXMLToJava
          This is the CastorXMLToJava class.
 

Uses of FunctionInterface in com.ibm.di.fc.cbe
 

Classes in com.ibm.di.fc.cbe that implement FunctionInterface
 class CBEGeneratorFC
          This class generates objects of type org.eclipse.hyades.logging.events.cbe.CommonBaseEvent from attributes mapped by user to Entry object.
 

Uses of FunctionInterface in com.ibm.di.fc.emf
 

Classes in com.ibm.di.fc.emf that implement FunctionInterface
 class EmfSdoToXml
          Function Component that using XML Schema converts Data Objects to an XML document.
 class EmfXmlToSdo
          Function Component that using XML Schema converts an XML document to a tree structure of Data Objects.
 

Uses of FunctionInterface in com.ibm.di.fc.remotecmdlnfc
 

Classes in com.ibm.di.fc.remotecmdlnfc that implement FunctionInterface
 class RemoteCmdLineFC
           ITDI Remote Command Line Function Component.
 

Uses of FunctionInterface in com.ibm.di.fc.rxaunittests
 

Classes in com.ibm.di.fc.rxaunittests that implement FunctionInterface
 class QA_RemoteCmdLineFC
           
 

Uses of FunctionInterface in com.ibm.di.fc.sapr3rfc
 

Classes in com.ibm.di.fc.sapr3rfc that implement FunctionInterface
 class SapR3RfcFC
           ITDI Function Component for SAP R/3 RFC Invocations.
 

Uses of FunctionInterface in com.ibm.di.fc.webservice
 

Classes in com.ibm.di.fc.webservice that implement FunctionInterface
 class AxisEasyInvokeSoapWS
           
 class AxisJavaToSoap
           
 class AxisSoapToJava
           
 class ComplexTypesGenerator
           
 class InvokeSoapWS
           
 class WrapSoap
           
 

Uses of FunctionInterface in com.ibm.di.function
 

Methods in com.ibm.di.function that return FunctionInterface
 FunctionInterface UserFunctions.getFunction(String name)
          Loads a function from the function library.
static FunctionInterface SystemFunctions.loadFunction(FunctionConfig config)
           
static FunctionInterface SystemFunctions.loadFunction(FunctionConfig config, Log log)
           
static FunctionInterface SystemFunctions.loadFunction(String name)
           
static FunctionInterface SystemFunctions.loadFunction(String name, RSInterface server)
           
 

Uses of FunctionInterface in com.ibm.di.server
 

Fields in com.ibm.di.server declared as FunctionInterface
 FunctionInterface FunctionComponent.function
          The reference to the wrapped Function Component object
protected  FunctionInterface FunctionComponent.rtp_function
           
 

Methods in com.ibm.di.server that return FunctionInterface
 FunctionInterface FunctionComponent.getFunction()
          This method returns the Function interface
 FunctionInterface TaskCallBlock.getRuntimeFunction(String name)
          Returns the runtime function for a named function
 

Methods in com.ibm.di.server with parameters of type FunctionInterface
 void TaskCallBlock.setRuntimeFunction(String name, FunctionInterface function)
          Sets the runtime function for a named function.
 

Constructors in com.ibm.di.server with parameters of type FunctionInterface
FunctionComponent(AssemblyLine parent, String name, FunctionConfig config, FunctionInterface function)