Interface EngineAccess.Data.Vertex
-
- Enclosing interface:
- EngineAccess.Data
public static interface EngineAccess.Data.Vertex
The data of a flow vertex.- Since:
- 1.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Returns the description text of this flow vertex.String
getId()
Returns the ID of this flow vertex.Map<String,String>
getMetadata()
Returns the metadata of this flow vertex.String
getName()
Returns the name of this flow vertex.String
getType()
Returns the type of this flow vertex.String
toString()
Returns a human readable representation of this flow vertex.
-
-
-
Method Detail
-
getId
String getId()
Returns the ID of this flow vertex.- Since:
- 1.3.0
-
getName
String getName()
Returns the name of this flow vertex.- Since:
- 1.3.0
-
getType
String getType()
Returns the type of this flow vertex. The value is one of:"transition"
- for a transition vertex"output"
- for an output vertex"script"
- for a script action vertex"flowNode"
- for a flow routing/invocation vertex
- Since:
- 1.3.0
-
getDescription
String getDescription()
Returns the description text of this flow vertex.- Since:
- 1.3.0
-
getMetadata
Map<String,String> getMetadata()
Returns the metadata of this flow vertex.- Returns:
- an unmodifiable
Map
containing the metadata name/value pairs - Since:
- 1.3.0
-
-