Package lumis.content.bigdata
Interface ContentVersionDocument.WorkflowMetaData
-
- Enclosing class:
- ContentVersionDocument
public static interface ContentVersionDocument.WorkflowMetaData
API that provides access to workflow meta Data fields.- Since:
- 8.1.0
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAssignedTo()
Returns the value ofContentVersionDocumentType.WorkflowMetaDataFields.ASSIGNED_TO
stored in this document.String
getStateId()
Returns the value ofContentVersionDocumentType.WorkflowMetaDataFields.STATE_ID
stored in this document.String
getWorkflowId()
Returns the value ofContentVersionDocumentType.WorkflowMetaDataFields.WORKFLOW_ID
stored in this document.void
setAssignedTo(String assignedTo)
Sets the value forContentVersionDocumentType.WorkflowMetaDataFields.ASSIGNED_TO
in this document.void
setStateId(String stateId)
Sets the value forContentVersionDocumentType.WorkflowMetaDataFields.STATE_ID
in this document.void
setWorkflowId(String workflowId)
Sets the value forContentVersionDocumentType.WorkflowMetaDataFields.WORKFLOW_ID
in this document.
-
-
-
Method Detail
-
getWorkflowId
String getWorkflowId()
Returns the value ofContentVersionDocumentType.WorkflowMetaDataFields.WORKFLOW_ID
stored in this document.- Returns:
- the value of
ContentVersionDocumentType.WorkflowMetaDataFields.WORKFLOW_ID
. - Since:
- 8.1.0
- See Also:
WorkflowConfig.getId()
-
setWorkflowId
void setWorkflowId(String workflowId)
Sets the value forContentVersionDocumentType.WorkflowMetaDataFields.WORKFLOW_ID
in this document.- Parameters:
workflowId
- the workflow's identifier to set.- Since:
- 8.1.0
- See Also:
WorkflowConfig.setId(String)
-
getAssignedTo
String getAssignedTo()
Returns the value ofContentVersionDocumentType.WorkflowMetaDataFields.ASSIGNED_TO
stored in this document.- Returns:
- the value of
ContentVersionDocumentType.WorkflowMetaDataFields.ASSIGNED_TO
. - Since:
- 8.1.0
- See Also:
ContentWorkflowMetaData.getAssignedTo()
-
setAssignedTo
void setAssignedTo(String assignedTo)
Sets the value forContentVersionDocumentType.WorkflowMetaDataFields.ASSIGNED_TO
in this document.- Parameters:
assignedTo
- the principal identifier to which the content is assigned to.- Since:
- 8.1.0
- See Also:
ContentWorkflowMetaData.setAssignedTo(String)
-
getStateId
String getStateId()
Returns the value ofContentVersionDocumentType.WorkflowMetaDataFields.STATE_ID
stored in this document.- Returns:
- the value of
ContentVersionDocumentType.WorkflowMetaDataFields.STATE_ID
. - Since:
- 8.1.0
- See Also:
ContentWorkflowMetaData.getStateId()
-
setStateId
void setStateId(String stateId)
Sets the value forContentVersionDocumentType.WorkflowMetaDataFields.STATE_ID
in this document.- Parameters:
stateId
- the workflow state's identifier.- Since:
- 8.1.0
- See Also:
ContentWorkflowMetaData.setStateId(String)
-
-