Interface EngineAccess.Data.Vertex
-
- Enclosing interface:
- EngineAccess.Data
public static interface EngineAccess.Data.VertexThe data of a flow vertex.- Since:
- 1.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Returns the description text of this flow vertex.StringgetId()Returns the ID of this flow vertex.Map<String,String>getMetadata()Returns the metadata of this flow vertex.StringgetName()Returns the name of this flow vertex.StringgetType()Returns the type of this flow vertex.StringtoString()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
Mapcontaining the metadata name/value pairs - Since:
- 1.3.0
-
-