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

126550 jkaabimofrad: Merged FILE-FOLDER-API (5.2.0) to HEAD (5.2)
      124200 jvonka: RA-869: Remove "include" processing from "includeSource" entity for /nodes/nodeId/children endpoint


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@126896 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Ancuta Morarasu
2016-05-11 12:07:27 +00:00
parent 7b4e9153d4
commit 8d6a950702
4 changed files with 38 additions and 19 deletions

View File

@@ -73,14 +73,14 @@ public class PathInfo
public static class ElementInfo
{
private NodeRef id;
private String id;
private String name;
public ElementInfo()
{
}
public ElementInfo(NodeRef id, String name)
public ElementInfo(String id, String name)
{
this.id = id;
this.name = name;
@@ -91,7 +91,7 @@ public class PathInfo
return name;
}
public NodeRef getId()
public String getId()
{
return id;
}