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/HEAD/root@126550 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jamal Kaabi-Mofrad
2016-05-10 11:27:00 +00:00
parent ce817d90b0
commit ad72fa0045
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;
}