REPO-557: Retrieve Permissions For Node

-  Renamed field according to REST API code conventions

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@133137 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Raluca Munteanu
2016-11-25 15:45:10 +00:00
parent c9753d62cd
commit a85512572b
3 changed files with 16 additions and 16 deletions

View File

@@ -58,12 +58,12 @@ public class NodePermissions
this.settable = settable;
}
public Boolean isInheritanceEnabled()
public Boolean getIsInheritanceEnabled()
{
return inherit;
}
public void setInheritanceEnabled(boolean inherit)
public void setIsInheritanceEnabled(boolean inherit)
{
this.inherit = inherit;
}
@@ -92,7 +92,7 @@ public class NodePermissions
public String toString()
{
final StringBuilder sb = new StringBuilder(120);
sb.append("PathInfo [inheritanceEnabled=").append(inherit)
sb.append("PathInfo [isInheritanceEnabled=").append(inherit)
.append(", inherited=").append(getInherited())
.append(", locallySet=").append(getLocallySet())
.append(", settable=").append(getSettable())