Class WorkflowModel.Node
- java.lang.Object
-
- com.adobe.cq.testing.client.workflow.WorkflowModel.Node
-
- Enclosing class:
- WorkflowModel
public class WorkflowModel.Node extends Object
Simple inner class wrapping a JSON node defining a model node
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Node(com.fasterxml.jackson.databind.JsonNode node)
The only constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
the description set for this nodeString
getId()
the id of this nodeMap<String,String>
getMetaData()
A map of all meta data properties stored in this nodeString
getTitle()
The title set for this nodeString
getType()
The type of this node
-
-
-
Method Detail
-
getId
public String getId()
the id of this node- Returns:
- the id
-
getType
public String getType()
The type of this node- Returns:
- node type
-
getTitle
public String getTitle()
The title set for this node- Returns:
- node title
-
getDescription
public String getDescription()
the description set for this node- Returns:
- the description
-
-