Retrieve this business object's verb.
Syntax
String getVerb()
Return values
The name of a verb, such as Create, Retrieve, Update, or Delete.
Notes
This method is useful for scenarios that handle multiple types of incoming events. The first action node in a scenario calls getVerb(). The outgoing transition links from that action node then test the contents of the returned string, so that each outgoing transition link is the start of an execution path that handles one of the possible verbs.
Examples
The following example obtains the verb from a business object called orderEvent and assigns it to a variable called orderVerb.
String orderVerb = orderEvent.getVerb();