mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
Merged HEAD (5.2) to 5.2.N (5.2.1)
126366 jkaabimofrad: Merged FILE-FOLDER-API (5.2.0) to HEAD (5.2) 119787 jvonka: FileFolder API - handle file/folder link & also prevent create/upload of unknown (~residual) props RA-638, RA-639 (and related) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@126711 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -60,6 +60,7 @@ public class Node implements Comparable<Node>
|
||||
protected UserInfo modifiedByUser;
|
||||
|
||||
protected Boolean isFolder;
|
||||
protected Boolean isLink;
|
||||
|
||||
protected NodeRef parentNodeRef;
|
||||
protected PathInfo pathInfo;
|
||||
@@ -238,7 +239,17 @@ public class Node implements Comparable<Node>
|
||||
|
||||
public void setIsFolder(Boolean isFolder)
|
||||
{
|
||||
this.isFolder=isFolder;
|
||||
this.isFolder = isFolder;
|
||||
}
|
||||
|
||||
public Boolean getIsLink()
|
||||
{
|
||||
return isLink;
|
||||
}
|
||||
|
||||
public void setIsLink(Boolean isLink)
|
||||
{
|
||||
this.isLink = isLink;
|
||||
}
|
||||
|
||||
public boolean equals(Object other)
|
||||
|
Reference in New Issue
Block a user