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

(-)Ace.java (-4 / +26 lines)
Line 55 Link Here
55
      public Ace(String principal, boolean negative, boolean protectedAce,
56
              boolean inheritable) {
57
              this(principal, negative, protectedAce, false, null);
58
              this.inheritable = inheritable;
59
      }
Line 88 Link Here
95
      /**
96
       * Inheritable.
97
       */
98
      protected boolean inheritable = true;
Line 107 Link Here
107
    public String getPrincipal() {
118
    public String getPrincipal()
108
--
119
      {
Line 167 Link Here
179
      /**
180
       * Inheritable mutator.
181
       */
182
      public void setInheritable(boolean inheritable) {
183
              this.inheritable = inheritable;
184
      }
185
      /**
186
       * Inheritable accessor.
187
       */
188
      public boolean isInheritable()
189
      {
190
              return inheritable;
191
      }
Line 171 Link Here
171
    public String getInheritedFrom() {
197
    public String getInheritedFrom()
172
--
198
      {
(-)AclMethod.java (+4 lines)
Line 139 Link Here
139
                      if (ace.isInheritable() != true) {
140
                              printer.writeElement("S", "http://jakarta.apache.org/slide/",
141
                                                       "non-inheritable", XMLPrinter.NO_CONTENT);
142
                      }
(-)AclProperty.java (+5 lines)
Line 184 Link Here
184
              child = DOMUtils.getFirstElement(element, "http://jakarta.apache.org/slide/", "non-inheritable");
185
              if (child != null)
186
              {
187
                      ace.setInheritable(false);
188
              }

Return to bug 33363