|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.james.core.LocalUsersRepository
Field Summary |
Fields inherited from interface org.apache.james.services.UsersRepository |
ROLE, USER |
Constructor Summary | |
LocalUsersRepository()
|
Method Summary | |
void |
addUser(String name,
Object attributes)
Adds a user to the repository with the specified attributes. |
boolean |
addUser(String username,
String password)
Adds a user to the repository with the specified password |
boolean |
addUser(User user)
Adds a user to the repository with the specified User object. |
boolean |
contains(String name)
Returns whether or not this user is in the repository |
boolean |
containsCaseInsensitive(String name)
Returns whether or not this user is in the repository. |
int |
countUsers()
Returns a count of the users in the repository. |
String |
getRealName(String name)
Returns the user name of the user matching name on an equalsIgnoreCase basis. |
User |
getUserByName(String name)
Get the user object with the specified user name. |
User |
getUserByNameCaseInsensitive(String name)
Get the user object with the specified user name. |
void |
initialize()
|
Iterator |
list()
List users in repository. |
void |
removeUser(String name)
Removes a user from the repository |
void |
service(org.apache.avalon.framework.service.ServiceManager serviceManager)
|
boolean |
test(String name,
String password)
Test if user with name 'name' has password 'password'. |
boolean |
updateUser(User user)
Update the repository with the specified user object. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public LocalUsersRepository()
Method Detail |
public void service(org.apache.avalon.framework.service.ServiceManager serviceManager) throws org.apache.avalon.framework.service.ServiceException
service
in interface org.apache.avalon.framework.service.Serviceable
org.apache.avalon.framework.service.ServiceException
public void initialize() throws Exception
initialize
in interface org.apache.avalon.framework.activity.Initializable
Exception
public boolean addUser(User user)
UsersRepository
addUser
in interface UsersRepository
user
- the user to be added
public void addUser(String name, Object attributes)
UsersRepository
addUser
in interface UsersRepository
name
- the name of the user to be addedattributes
- see decriptionpublic boolean addUser(String username, String password)
UsersRepository
addUser
in interface UsersRepository
username
- the username of the user to be addedpassword
- the password of the user to add
public User getUserByName(String name)
UsersRepository
getUserByName
in interface UsersRepository
name
- the name of the user to retrieve
public User getUserByNameCaseInsensitive(String name)
UsersRepository
getUserByNameCaseInsensitive
in interface UsersRepository
name
- the name of the user to retrieve
public String getRealName(String name)
UsersRepository
getRealName
in interface UsersRepository
name
- the name to case-correct
public boolean updateUser(User user)
UsersRepository
updateUser
in interface UsersRepository
public void removeUser(String name)
UsersRepository
removeUser
in interface UsersRepository
name
- the user to remove from the repositorypublic boolean contains(String name)
UsersRepository
contains
in interface UsersRepository
name
- the name to check in the repository
public boolean containsCaseInsensitive(String name)
UsersRepository
containsCaseInsensitive
in interface UsersRepository
name
- the name to check in the repository
public boolean test(String name, String password)
UsersRepository
test
in interface UsersRepository
name
- the name of the user to be testedpassword
- the password to be tested
public int countUsers()
UsersRepository
countUsers
in interface UsersRepository
public Iterator list()
UsersRepository
list
in interface UsersRepository
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |