1 16 package org.apache.cocoon.components.source.helpers; 17 18 24 public class GroupSourcePermission extends AbstractSourcePermission { 25 26 private String group; 27 28 36 public GroupSourcePermission(String group, String privilege, 37 boolean inheritable, boolean negative) { 38 39 this.group = group; 40 setPrivilege(privilege); 41 setInheritable(inheritable); 42 setNegative(negative); 43 } 44 45 50 public void setGroup(String group) { 51 this.group = group; 52 } 53 54 59 public String getGroup() { 60 return this.group; 61 } 62 } 63 | Popular Tags |