Merged 5.2.N (5.2.1) to HEAD (5.2)

129711 jvonka: REPO-1138 / REPO-983: Add support for the isLocked property
   - can optionally "include" when getting node info, listing children, ...


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@130219 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alan Davis
2016-09-06 14:41:32 +00:00
parent 2a5218afb8
commit 2953ce53de
5 changed files with 86 additions and 4 deletions

View File

@@ -73,6 +73,7 @@ public class Node implements Comparable<Node>
protected Boolean isFolder;
protected Boolean isFile;
protected Boolean isLink;
protected Boolean isLocked;
protected NodeRef parentNodeRef;
protected PathInfo pathInfo;
@@ -305,6 +306,16 @@ public class Node implements Comparable<Node>
this.isLink = isLink;
}
public Boolean getIsLocked()
{
return isLocked;
}
public void setIsLocked(Boolean isLocked)
{
this.isLocked = isLocked;
}
public List<String> getAllowableOperations()
{
return allowableOperations;