Interface Action
-
public interface Action
The Action that was performed on the document- Since:
- 7.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ActionDetail>
getActionDetails()
Details of the actionActionType
getActionType()
Type of the actionList<Actor>
getActors()
Actors involved in this action
-
-
-
Method Detail
-
getActionType
ActionType getActionType()
Type of the action- Returns:
ActionType
object with the type and subtype of action performed- Since:
- 7.0
-
getActors
List<Actor> getActors()
Actors involved in this action- Returns:
- list of users that have performed the action
- Since:
- 7.0
-
getActionDetails
List<ActionDetail> getActionDetails()
Details of the action- Returns:
- list of
ActionDetail
objects for the action - Since:
- 7.0
-
-