Package org.apache.catalina.startup
Interface UserDatabase
- All Known Implementing Classes:
HomesUserDatabase
,PasswdUserDatabase
public interface UserDatabase
Abstraction of the set of users defined by the operating system on the current server platform.
- Author:
- Craig R. McClanahan
-
Method Summary
Modifier and TypeMethodDescriptiongetUsers()
void
setUserConfig
(UserConfig userConfig) Set the UserConfig listener with which we are associated.
-
Method Details
-
getUserConfig
UserConfig getUserConfig()- Returns:
- the UserConfig listener with which we are associated.
-
setUserConfig
Set the UserConfig listener with which we are associated.- Parameters:
userConfig
- The new UserConfig listener
-
getHome
-
getUsers
Enumeration<String> getUsers()- Returns:
- an enumeration of the usernames defined on this server.
-