Package com.alfresco.content.models
Class NodeBodyUpdate
-
- All Implemented Interfaces:
@JsonClass(generateAdapter = true) public final class NodeBodyUpdate
-
-
Field Summary
Fields Modifier and Type Field Description private Stringnameprivate StringnodeTypeprivate List<String>aspectNamesprivate Map<String, String>propertiesprivate PermissionsBodypermissions
-
Constructor Summary
Constructors Constructor Description NodeBodyUpdate(String name, String nodeType, List<String> aspectNames, Map<String, String> properties, PermissionsBody permissions)
-
Method Summary
Modifier and Type Method Description final StringgetName()The name must not contain spaces or the following special characters: * \" <> \\ / ? final UnitsetName(@Json(name = "name") String name)The name must not contain spaces or the following special characters: * \" <> \\ / ? final StringgetNodeType()final UnitsetNodeType(@Json(name = "nodeType") String nodeType)final List<String>getAspectNames()final UnitsetAspectNames(@Json(name = "aspectNames") List<String> aspectNames)final Map<String, String>getProperties()final UnitsetProperties(@Json(name = "properties") Map<String, String> properties)final PermissionsBodygetPermissions()final UnitsetPermissions(@Json(name = "permissions") PermissionsBody permissions)-
-
Method Detail
-
getName
final String getName()
The name must not contain spaces or the following special characters: * \" <> \\ / ? : and |. The character . must not be used at the end of the name.
-
setName
final Unit setName(@Json(name = "name") String name)
The name must not contain spaces or the following special characters: * \" <> \\ / ? : and |. The character . must not be used at the end of the name.
-
getNodeType
final String getNodeType()
-
setNodeType
final Unit setNodeType(@Json(name = "nodeType") String nodeType)
-
getAspectNames
final List<String> getAspectNames()
-
setAspectNames
final Unit setAspectNames(@Json(name = "aspectNames") List<String> aspectNames)
-
getProperties
final Map<String, String> getProperties()
-
setProperties
final Unit setProperties(@Json(name = "properties") Map<String, String> properties)
-
getPermissions
final PermissionsBody getPermissions()
-
setPermissions
final Unit setPermissions(@Json(name = "permissions") PermissionsBody permissions)
-
-
-
-