public interface UserDatabase
Modifier and Type | Method and Description |
---|---|
void |
deleteByLoginName(String loginName)
Looks up and deletes the first
UserProfile in the user database
that matches a profile having a given login name. |
UserProfile |
find(String index)
Looks up and returns the first
UserProfile in the user database
that whose login name, full name, or wiki name matches the supplied
string. |
UserProfile |
findByEmail(String index)
Looks up and returns the first
UserProfile in the user database
that matches a profile having a given e-mail address. |
UserProfile |
findByFullName(String index)
Looks up and returns the first
UserProfile in the user database
that matches a profile having a given full name. |
UserProfile |
findByLoginName(String index)
Looks up and returns the first
UserProfile in the user database
that matches a profile having a given login name. |
UserProfile |
findByUid(String uid)
Looks up and returns the first
UserProfile in the user database
that matches a profile having a given unique ID (uid). |
UserProfile |
findByWikiName(String index)
Looks up and returns the first
UserProfile in the user database
that matches a profile having a given wiki name. |
Principal[] |
getPrincipals(String identifier)
Looks up the Principals representing a user from the user database.
|
Principal[] |
getWikiNames()
Returns all WikiNames that are stored in the UserDatabase
as an array of Principal objects.
|
void |
initialize(WikiEngine engine,
Properties props)
Initializes the user database based on values from a Properties object.
|
UserProfile |
newProfile()
Factory method that instantiates a new user profile.
|
void |
rename(String loginName,
String newName)
Renames a
UserProfile in the user database by changing
the profile's login name. |
void |
save(UserProfile profile)
Saves a
UserProfile to the user database, overwriting the
existing profile if it exists. |
boolean |
validatePassword(String loginName,
String password)
Determines whether a supplied user password is valid, given a login name
and password.
|
void deleteByLoginName(String loginName) throws NoSuchPrincipalException, WikiSecurityException
UserProfile
in the user database
that matches a profile having a given login name. If the user database
does not contain a user with a matching attribute, throws a
NoSuchPrincipalException
. This method is intended to be atomic;
results cannot be partially committed. If the commit fails, it should
roll back its state appropriately. Implementing classes that persist
to the file system may wish to make this method synchronized
.loginName
- the login name of the user profile that shall be deletedNoSuchPrincipalException
WikiSecurityException
Principal[] getPrincipals(String identifier) throws NoSuchPrincipalException
Looks up the Principals representing a user from the user database. These
are defined as a set of Principals manufactured from the login name, full
name, and wiki name. The order of the Principals returned is not
significant. If the user database does not contain a user with the
supplied identifier, throws a NoSuchPrincipalException
.
Note that if an implememtation wishes to mark one of the returned
Principals as representing the user's common name, it should instantiate
this Principal using
WikiPrincipal.WikiPrincipal(String, String)
with the type
parameter set to
WikiPrincipal.WIKI_NAME
. The method
WikiSession.getUserPrincipal()
will return this
principal as the "primary" principal. Note that this method can also be
used to mark a WikiPrincipal as a login name or a wiki name.
identifier
- the name of the user to retrieve; this corresponds to
value returned by the user profile's
UserProfile.getLoginName()
method.NoSuchPrincipalException
Principal[] getWikiNames() throws WikiSecurityException
WikiSecurityException
UserProfile find(String index) throws NoSuchPrincipalException
UserProfile
in the user database
that whose login name, full name, or wiki name matches the supplied
string. This method provides a "forgiving" search algorithm for resolving
Principal names when the exact profile attribute that supplied the name
is unknown.index
- the login name, full name, or wiki nameNoSuchPrincipalException
UserProfile findByEmail(String index) throws NoSuchPrincipalException
UserProfile
in the user database
that matches a profile having a given e-mail address. If the user
database does not contain a user with a matching attribute, throws a
NoSuchPrincipalException
.index
- the e-mail address of the desired user profileNoSuchPrincipalException
UserProfile findByLoginName(String index) throws NoSuchPrincipalException
UserProfile
in the user database
that matches a profile having a given login name. If the user database
does not contain a user with a matching attribute, throws a
NoSuchPrincipalException
.index
- the login name of the desired user profileNoSuchPrincipalException
UserProfile findByUid(String uid) throws NoSuchPrincipalException
UserProfile
in the user database
that matches a profile having a given unique ID (uid). If the user database
does not contain a user with a unique ID, it throws a
NoSuchPrincipalException
.uid
- the unique identifier of the desired user profileNoSuchPrincipalException
UserProfile findByWikiName(String index) throws NoSuchPrincipalException
UserProfile
in the user database
that matches a profile having a given wiki name. If the user database
does not contain a user with a matching attribute, throws a
NoSuchPrincipalException
.index
- the wiki name of the desired user profileNoSuchPrincipalException
UserProfile findByFullName(String index) throws NoSuchPrincipalException
UserProfile
in the user database
that matches a profile having a given full name. If the user database
does not contain a user with a matching attribute, throws a
NoSuchPrincipalException
.index
- the fill name of the desired user profileNoSuchPrincipalException
void initialize(WikiEngine engine, Properties props) throws NoRequiredPropertyException, WikiSecurityException
UserProfile newProfile()
UserProfile.isNew()
method of profiles created using
this method should return true
.void rename(String loginName, String newName) throws NoSuchPrincipalException, DuplicateUserException, WikiSecurityException
Renames a UserProfile
in the user database by changing
the profile's login name. Because the login name is the profile's unique
identifier, implementations should verify that the identifier is
"safe" to change before actually changing it. Specifically: the profile
with the supplied login name must already exist, and the proposed new
name must not be in use by another profile.
This method is intended to be atomic; results cannot be partially committed.
If the commit fails, it should roll back its state appropriately.
Implementing classes that persist to the file system may wish to make
this method synchronized
.
loginName
- the existing login name for the profilenewName
- the proposed new login nameNoSuchPrincipalException
- if the user profile identified by
loginName
does not existDuplicateUserException
- if another user profile with the
proposed new login name already existsWikiSecurityException
- if the profile cannot be renamed for
any reason, such as an I/O error, database connection failure
or lack of support for renames.void save(UserProfile profile) throws WikiSecurityException
Saves a UserProfile
to the user database, overwriting the
existing profile if it exists. The user name under which the profile
should be saved is returned by the supplied profile's
UserProfile.getLoginName()
method.
The database implementation is responsible for detecting potential duplicate user profiles; specifically, the login name, wiki name, and full name must be unique. The implementation is not required to check for validity of passwords or e-mail addresses. Special case: if the profile already exists and the password is null, it should retain its previous value, rather than being set to null.
Implementations are required to time-stamp the creation or modification fields of the UserProfile./p>
This method is intended to be atomic; results cannot be partially committed.
If the commit fails, it should roll back its state appropriately.
Implementing classes that persist to the file system may wish to make
this method synchronized
.
profile
- the user profile to saveWikiSecurityException
- if the profile cannot be savedboolean validatePassword(String loginName, String password)
loginName
- the login namepassword
- the passwordtrue
if the password is valid, false
otherwiseCopyright © 2001-2019 The Apache Software Foundation. All rights reserved.