Package com.esprow.oapi.repository
Interface OapiTrigger
public interface OapiTrigger
Represents a state machine transition invoked when a message is received.
The following attributes and references are supported:
-
Method Summary
Modifier and TypeMethodDescriptiongetActor()
Returns the actor owning the state machine.getName()
Returns the name of the transition to invoke.Returns the name of the state machine.void
Set the actor owning the state machine.void
Set the name of the transition to invoke.void
setStateMachine
(String value) Set the name of the state machine.
-
Method Details
-
getActor
String getActor()Returns the actor owning the state machine.- Returns:
- the actor owning the state machine
- See Also:
-
setActor
Set the actor owning the state machine.- Parameters:
value
- the new value of the 'Actor' attribute.- See Also:
-
getName
String getName()Returns the name of the transition to invoke.- Returns:
- the name of the transition to invoke
- See Also:
-
setName
Set the name of the transition to invoke.- Parameters:
value
- the new value of the 'Name' attribute.- See Also:
-
getStateMachine
String getStateMachine()Returns the name of the state machine.- Returns:
- the name of the state machine
- See Also:
-
setStateMachine
Set the name of the state machine.- Parameters:
value
- the new value of the 'State Machine' attribute.- See Also:
-