1 26 27 package org.objectweb.jonas.security.realm.factory; 28 29 33 public interface JResourceMemoryMBean extends JResourceMBean { 34 35 41 void addUser(String username, String password) throws Exception ; 42 43 48 void addGroup(String groupname) throws Exception ; 49 50 55 void addRole(String rolename) throws Exception ; 56 57 62 void removeUser(String username) throws Exception ; 63 64 69 void removeGroup(String groupname) throws Exception ; 70 71 76 void removeRole(String rolename) throws Exception ; 77 78 82 String [] listRoles(); 83 84 88 String [] listGroups(); 89 90 } | Popular Tags |