Interface DocumentVersionLifecycleUserActionDetail
public interface DocumentVersionLifecycleUserActionDetail
Represents the metadata associated with a lifecycle user action for a particular document version.
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves theDocumentLifecycleUserActionMetadata
associated with this user action.boolean
Retrieves whether the run as user has permission to execute the user action.boolean
Retrieves whether the run as user has permission to view the user action.
-
Method Details
-
getMetadata
DocumentLifecycleUserActionMetadata getMetadata()Retrieves theDocumentLifecycleUserActionMetadata
associated with this user action.- Returns:
- the
DocumentLifecycleUserActionMetadata
-
isViewable
boolean isViewable()Retrieves whether the run as user has permission to view the user action.- Returns:
- true if the run as user has permission to view the user action, false otherwise
-
isExecutable
boolean isExecutable()Retrieves whether the run as user has permission to execute the user action.- Returns:
- true if the run as user has permission to execute the user action, false otherwise
-