mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
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:
@@ -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())
|
||||
|
Reference in New Issue
Block a user