Interface SessionInteraction.Specification
- Enclosing interface:
- SessionInteraction
public static interface SessionInteraction.SpecificationGives information about the specification of the interaction.- Since:
- 5.8.0
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserMessagegetAcceptButtonLabel()Returns the label associated with the Accept button.UserMessagegetAcceptConfirmationMessage()Returns the confirmation message associated with the Accept button.UserMessagegetRejectButtonLabel()Returns the label associated with the Reject button.UserMessagegetRejectConfirmationMessage()Returns the confirmation message associated with the Reject button.booleanisAutoComplete()Returnstrueif the user service associated with the interaction is auto-complete.booleanisCommentMandatoryForAccept()Returnstrueif the comment is mandatory for accepting the interaction.booleanisCommentMandatoryForReject()Returnstrueif the comment is mandatory for rejecting the interaction.booleanisRejectEnabled()Returnstrueif the reject is enabled for the interaction.
-
-
Method Detail
getAcceptButtonLabel
UserMessage getAcceptButtonLabel()
Returns the label associated with the Accept button.
getAcceptConfirmationMessage
UserMessage getAcceptConfirmationMessage()
Returns the confirmation message associated with the Accept button.
getRejectButtonLabel
UserMessage getRejectButtonLabel()
Returns the label associated with the Reject button.
getRejectConfirmationMessage
UserMessage getRejectConfirmationMessage()
Returns the confirmation message associated with the Reject button.
isAutoComplete
boolean isAutoComplete()
Returnstrueif the user service associated with the interaction is auto-complete.Currently, only some built-in services can be considered as auto-complete.
isRejectEnabled
boolean isRejectEnabled()
Returnstrueif the reject is enabled for the interaction.
isCommentMandatoryForAccept
boolean isCommentMandatoryForAccept()
Returnstrueif the comment is mandatory for accepting the interaction.
isCommentMandatoryForReject
boolean isCommentMandatoryForReject()
Returnstrueif the comment is mandatory for rejecting the interaction.
-