org.mmbase.security.implementation.cloudcontext
Class Authenticate
java.lang.Object
org.mmbase.security.Configurable
org.mmbase.security.Authentication
org.mmbase.security.implementation.cloudcontext.Authenticate
- public class Authenticate
- extends Authentication
Cloud-based Authentication. Deploy the application to explore the object-model on which this is based.
Besides the cloud also a '/admins.properties' file is considered, which can
be used by site-admins to give themselves rights if somehow they lost it, without turning of
security altogether.
- Version:
- $Id: Authenticate.java,v 1.6 2003/11/19 15:14:27 pierre Exp $
- Author:
- Eduard Witteveen, Pierre van Rooden, Michiel Meeuwissen
|
Method Summary |
static User |
getLoggedInExtraAdmin(java.lang.String userName)
|
boolean |
isValid(UserContext usercontext)
The method returns wether the UserContext has become invalid for some reason (change in security config?) |
protected void |
load()
This method should be overrided by an extending class. |
UserContext |
login(java.lang.String s,
java.util.Map map,
java.lang.Object[] aobj)
This method will verify the login, and give a UserContext back if the login procedure was successful. |
protected void |
readAdmins(java.io.File f)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
loggedInExtraAdmins
protected static java.util.Map loggedInExtraAdmins
watchAdmins
protected FileWatcher watchAdmins
Authenticate
public Authenticate()
- Constructor. Only initializes an 'unique number' for this security instance, which can be used in
'isValid'.
readAdmins
protected void readAdmins(java.io.File f)
load
protected void load()
throws SecurityException
- Description copied from class:
Configurable
- This method should be overrided by an extending class. It should further initialize the
class. It can optionally retrieve settings from the general security configuration file
(available as the 'configFile' member). Security implementations with complicated
configuration would typically retrieve a path to their own configuration file only.
- Specified by:
load in class Configurable
- Throws:
SecurityException
login
public UserContext login(java.lang.String s,
java.util.Map map,
java.lang.Object[] aobj)
throws SecurityException
- Description copied from class:
Authentication
- This method will verify the login, and give a UserContext back if the login procedure was successful.
- Specified by:
login in class Authentication
- Parameters:
s - A String that further specifies the login method (one implementation could handle more then one methods)
A typical value might be 'username/password'.map - A Map containing the credentials or other objects which might be used to obtain them (e.g. request/response objects).
It might also be 'null', in which case your implementation normally should return the 'anonymous' user (or null, if
no such user can be defined).aobj - A list of optional parameters, may also (and will often) be null.
- Returns:
nullThrows:
SecurityException - When something strang happened
getLoggedInExtraAdmin
public static User getLoggedInExtraAdmin(java.lang.String userName)
isValid
public boolean isValid(UserContext usercontext)
throws SecurityException
- Description copied from class:
Authentication
- The method returns wether the UserContext has become invalid for some reason (change in security config?)
- Specified by:
isValid in class Authentication
- Parameters:
usercontext - The UserContext of which we want to know the rights
- Returns:
true when valid, otherwise false
- Throws:
SecurityException - When something strang happend
MMBase build 1.7.1.20041002