Package com.esprow.oapi.repository
Interface OapiFlow
public interface OapiFlow
A stream of messages in one direction.
The following attributes and references are supported:
-
Method Summary
Modifier and TypeMethodDescriptionReturns all metadata on an element (documentation etc.).Returns the name of the actor that receives messages.getName()
Returns the name of the flow.Returns a delivery guarantee for messages on the flow.Returns the name of the actor from which messages originate.void
setAnnotation
(OapiAnnotation value) Set all metadata on an element (documentation etc.).void
setDestination
(String value) Set the name of the actor that receives messages.void
Set the name of the flow.void
setReliability
(Reliability value) Set a delivery guarantee for messages on the flow.void
Set the name of the actor from which messages originate.
-
Method Details
-
getAnnotation
OapiAnnotation getAnnotation()Returns all metadata on an element (documentation etc.).- Returns:
- all metadata on an element (documentation etc.)
- See Also:
-
setAnnotation
Set all metadata on an element (documentation etc.).- Parameters:
value
- the new value of the 'Annotation' containment reference.- See Also:
-
getDestination
String getDestination()Returns the name of the actor that receives messages.- Returns:
- the name of the actor that receives messages
- See Also:
-
setDestination
Set the name of the actor that receives messages.- Parameters:
value
- the new value of the 'Destination' attribute.- See Also:
-
getName
String getName()Returns the name of the flow.- Returns:
- the name of the flow
- See Also:
-
setName
Set the name of the flow.- Parameters:
value
- the new value of the 'Name' attribute.- See Also:
-
getReliability
Reliability getReliability()Returns a delivery guarantee for messages on the flow. The literals are from the enumerationReliability
.- Returns:
- a delivery guarantee for messages on the flow
- See Also:
-
setReliability
Set a delivery guarantee for messages on the flow.- Parameters:
value
- the new value of the 'Reliability' attribute.- See Also:
-
getSource
String getSource()Returns the name of the actor from which messages originate.- Returns:
- the name of the actor from which messages originate
- See Also:
-
setSource
Set the name of the actor from which messages originate.- Parameters:
value
- the new value of the 'Source' attribute.- See Also:
-