Class XmlFunctionCallDS
java.lang.Object
com.aquima.interactions.foundation.report.ReportingDS
com.aquima.interactions.portal.ds.xml.parsing.XmlFunctionCallDS
- All Implemented Interfaces:
IReportingDS
,IFunctionCallDS
- Since:
- 10.3
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThis method returns the function call name.This method returns the reference to the flow the function call executes.void
This method should iterate over all the function input parameters and invoke the visitor for each parameter that should be added.void
This method should iterate over all the function output parameters and invoke the visitor for each parameter that should be added.Methods inherited from class com.aquima.interactions.foundation.report.ReportingDS
addError, addMessage, getCategory, getReport
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.aquima.interactions.foundation.report.IReportingDS
addMessage
-
Constructor Details
-
XmlFunctionCallDS
-
-
Method Details
-
getCallName
Description copied from interface:IFunctionCallDS
This method returns the function call name.- Specified by:
getCallName
in interfaceIFunctionCallDS
- Returns:
- The function call name, never null.
-
getFlowReference
Description copied from interface:IFunctionCallDS
This method returns the reference to the flow the function call executes.- Specified by:
getFlowReference
in interfaceIFunctionCallDS
- Returns:
- The flow reference, never null.
-
iterateInputParameters
public void iterateInputParameters(IFunctionCallInputParameterVisitor visitor) throws InitializationException Description copied from interface:IFunctionCallDS
This method should iterate over all the function input parameters and invoke the visitor for each parameter that should be added.- Specified by:
iterateInputParameters
in interfaceIFunctionCallDS
- Parameters:
visitor
- The visitor that should be used to add parameters to.- Throws:
InitializationException
- This exception is thrown when an input parameter could not be initialized.
-
iterateOutputParameters
public void iterateOutputParameters(IFunctionCallOutputParameterVisitor visitor) throws InitializationException Description copied from interface:IFunctionCallDS
This method should iterate over all the function output parameters and invoke the visitor for each parameter that should be added.- Specified by:
iterateOutputParameters
in interfaceIFunctionCallDS
- Parameters:
visitor
- The visitor that should be used to add parameters to.- Throws:
InitializationException
- This exception is thrown when an output parameter could not be initialized.
-