Package com.day.cq.workflow
Interface HasMetaData
-
- All Known Subinterfaces:
Workflow
,WorkflowData
,WorkflowModel
,WorkflowNode
,WorkflowTransition
,WorkItem
public interface HasMetaData
Interface for workflow entities that provide meta data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.Dictionary<java.lang.String,java.lang.String>
getMetaData()
Deprecated.It's recommended to usegetMetaDataMap()
instead.MetaDataMap
getMetaDataMap()
Provides meta data assigned to the entity, supporting any type.
-
-
-
Method Detail
-
getMetaData
java.util.Dictionary<java.lang.String,java.lang.String> getMetaData()
Deprecated.It's recommended to usegetMetaDataMap()
instead.Provides meta data assigned to the entity.- Returns:
- The map of meta data assigned to the entity.
-
getMetaDataMap
MetaDataMap getMetaDataMap()
Provides meta data assigned to the entity, supporting any type.- Returns:
- A meta data map.
- Since:
- 5.4
- See Also:
MetaDataMap
-
-