1 16 package org.apache.cocoon.components.source.helpers; 17 18 24 public abstract class AbstractSourcePermission implements SourcePermission{ 25 26 private String privilege; 27 private boolean inheritable; 28 private boolean negative; 29 30 35 public void setPrivilege(String privilege) { 36 this.privilege = privilege; 37 } 38 39 44 public String getPrivilege() { 45 return this.privilege; 46 } 47 48 53 public void setInheritable(boolean inheritable) { 54 this.inheritable = inheritable; 55 } 56 57 62 public boolean isInheritable() { 63 return this.inheritable; 64 } 65 66 71 public void setNegative(boolean negative) { 72 this.negative = negative; 73 } 74 75 80 public boolean isNegative() { 81 return this.negative; 82 } 83 } 84 | Popular Tags |