Package org.alfresco.rest.api.model
Class ActionDefinition
- java.lang.Object
-
- org.alfresco.rest.api.model.ActionDefinition
-
public class ActionDefinition extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ActionDefinition.ParameterDefinition
-
Constructor Summary
Constructors Constructor Description ActionDefinition()
For Jackson deserialisation.ActionDefinition(String id, String name, String title, String description, List<String> applicableTypes, boolean adhocPropertiesAllowed, boolean trackStatus, List<ActionDefinition.ParameterDefinition> parameterDefinitions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getApplicableTypes()
String
getDescription()
String
getId()
Will be used as a synonym for name.String
getName()
List<ActionDefinition.ParameterDefinition>
getParameterDefinitions()
String
getTitle()
boolean
isAdhocPropertiesAllowed()
boolean
isTrackStatus()
-
-
-
Method Detail
-
getId
public String getId()
Will be used as a synonym for name.
-
getName
public String getName()
-
getTitle
public String getTitle()
-
getDescription
public String getDescription()
-
isAdhocPropertiesAllowed
public boolean isAdhocPropertiesAllowed()
-
isTrackStatus
public boolean isTrackStatus()
-
getParameterDefinitions
public List<ActionDefinition.ParameterDefinition> getParameterDefinitions()
-
-