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: 26157 $ $Date: 2024-01-13 11:35:03 -0300 (Sat, 13 Jan 2024) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getAssignedTo()
Returns the value ofContentVersionDocumentType.WorkflowMetaDataFields.ASSIGNED_TO
stored in this document.java.lang.String
getStateId()
Returns the value ofContentVersionDocumentType.WorkflowMetaDataFields.STATE_ID
stored in this document.java.lang.String
getWorkflowId()
Returns the value ofContentVersionDocumentType.WorkflowMetaDataFields.WORKFLOW_ID
stored in this document.void
setAssignedTo(java.lang.String assignedTo)
Sets the value forContentVersionDocumentType.WorkflowMetaDataFields.ASSIGNED_TO
in this document.void
setStateId(java.lang.String stateId)
Sets the value forContentVersionDocumentType.WorkflowMetaDataFields.STATE_ID
in this document.void
setWorkflowId(java.lang.String workflowId)
Sets the value forContentVersionDocumentType.WorkflowMetaDataFields.WORKFLOW_ID
in this document.
-
-
-
Method Detail
-
getWorkflowId
java.lang.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(java.lang.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
java.lang.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(java.lang.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
java.lang.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(java.lang.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)
-
-