1 17 18 package org.apache.lenya.ac; 19 20 24 public interface Group extends Identifiable, Item { 25 26 30 Groupable[] getMembers(); 31 32 36 void add(Groupable member); 37 38 42 void remove(Groupable member); 43 44 47 void removeAllMembers(); 48 49 54 boolean contains(Groupable member); 55 56 60 void delete() throws AccessControlException; 61 62 66 void save() throws AccessControlException; 67 68 } | Popular Tags |