Class InteractionHelper
- java.lang.Object
-
- com.orchestranetworks.interactions.InteractionHelper
-
public final class InteractionHelper extends Object
This class provides methods for implementing a user service that has been declared as an interaction.Note: The methods of this class were deprecated in version 5.2.7, having been replaced by methods in the class
SessionInteraction
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InteractionHelper.ParametersMap
Defines the parameters of an interaction, either the input, output or internal parameters.
-
Constructor Summary
Constructors Constructor Description InteractionHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static void
complete(InteractionHelper.ParametersMap outputParameters, Session aSession)
Deprecated.static InteractionHelper.ParametersMap
getInputParameters(Session aSession)
Deprecated.Replaced bySessionInteraction.getInputParameters()
.static InteractionHelper.ParametersMap
getInternalParameters(Session aSession)
Deprecated.Replaced bySessionInteraction.getInternalParameters()
.static boolean
isComplete(Session aSession)
Deprecated.Replaced bySessionInteraction.isComplete()
.static void
setInternalParameters(InteractionHelper.ParametersMap internalParameters, Session aSession)
-
-
-
Method Detail
-
getInputParameters
@Deprecated public static InteractionHelper.ParametersMap getInputParameters(Session aSession) throws InteractionException
Deprecated.Replaced bySessionInteraction.getInputParameters()
.- Throws:
InteractionException
-
getInternalParameters
@Deprecated public static InteractionHelper.ParametersMap getInternalParameters(Session aSession) throws InteractionException
Deprecated.Replaced bySessionInteraction.getInternalParameters()
.- Throws:
InteractionException
-
setInternalParameters
@Deprecated public static void setInternalParameters(InteractionHelper.ParametersMap internalParameters, Session aSession) throws InteractionException
Deprecated.- Throws:
InteractionException
-
complete
@Deprecated public static void complete(InteractionHelper.ParametersMap outputParameters, Session aSession) throws InteractionException
Deprecated.- Throws:
InteractionException
-
isComplete
@Deprecated public static boolean isComplete(Session aSession) throws InteractionException
Deprecated.Replaced bySessionInteraction.isComplete()
.- Throws:
InteractionException
-
-