org.apache.catalina.startup
Class PasswdUserDatabase

java.lang.Object
  extended byorg.apache.catalina.startup.PasswdUserDatabase
All Implemented Interfaces:
UserDatabase

public final class PasswdUserDatabase
extends java.lang.Object
implements UserDatabase

Concrete implementation of the UserDatabase interface that processes the /etc/passwd file on a Unix system.

Version:
$Revision: 466595 $ $Date: 2006-10-21 23:24:41 +0100 (Sat, 21 Oct 2006) $
Author:
Craig R. McClanahan

Constructor Summary
PasswdUserDatabase()
          Initialize a new instance of this user database component.
 
Method Summary
 java.lang.String getHome(java.lang.String user)
          Return an absolute pathname to the home directory for the specified user.
 UserConfig getUserConfig()
          Return the UserConfig listener with which we are associated.
 java.util.Enumeration getUsers()
          Return an enumeration of the usernames defined on this server.
 void setUserConfig(UserConfig userConfig)
          Set the UserConfig listener with which we are associated.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PasswdUserDatabase

public PasswdUserDatabase()
Initialize a new instance of this user database component.

Method Detail

getUserConfig

public UserConfig getUserConfig()
Return the UserConfig listener with which we are associated.

Specified by:
getUserConfig in interface UserDatabase

setUserConfig

public void setUserConfig(UserConfig userConfig)
Set the UserConfig listener with which we are associated.

Specified by:
setUserConfig in interface UserDatabase
Parameters:
userConfig - The new UserConfig listener

getHome

public java.lang.String getHome(java.lang.String user)
Return an absolute pathname to the home directory for the specified user.

Specified by:
getHome in interface UserDatabase
Parameters:
user - User for which a home directory should be retrieved

getUsers

public java.util.Enumeration getUsers()
Return an enumeration of the usernames defined on this server.

Specified by:
getUsers in interface UserDatabase


Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.