View | Details | Raw Unified | Return to bug 33363
Collapse All | Expand All

(-)AclMethod.java (-2 / +10 lines)
Line 36 Link Here
36
import org.apache.slide.content.NodeProperty.NamespaceCache;
Line 124 Link Here
125
              boolean inheritance = true;
126
              // Inheritance element
127
              Element inheritanceElm = aceElm.getChild("non-inheritable", NamespaceCache.SLIDE_NAMESPACE);
128
              if (inheritanceElm != null)
129
              {
130
                      inheritance = false;
131
                      System.out.println("setting non-inheritable node");
132
              }
Line 175 Link Here
175
                NodePermission np = new NodePermission(objectUri, subjectUri, actionUri, true, negative);
185
                NodePermission np = new NodePermission(objectUri, subjectUri, actionUri, inheritance, negative);
176
--
(-)PropertyHelper.java (+5 lines)
Line 1777 Link Here
1777
                              // inheritable
1778
                              if (perm.isInheritable() == false)
1779
                              {
1780
                                      currentAceElm.addContent(new Element("non-inheritable", NamespaceCache.SLIDE_NAMESPACE));
1781
                              }

Return to bug 33363