UserProfile |
AbstractUserDatabase.find(java.lang.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 |
UserDatabase.find(java.lang.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 |
XMLUserDatabase.findBy(java.lang.String attr,
java.lang.String value) |
|
abstract UserProfile |
AbstractUserDatabase.findByEmail(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given e-mail address.
|
UserProfile |
DummyUserDatabase.findByEmail(java.lang.String index) |
No-op; always throws NoSuchPrincipalException .
|
UserProfile |
JDBCUserDatabase.findByEmail(java.lang.String index) |
|
UserProfile |
UserDatabase.findByEmail(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given e-mail address.
|
UserProfile |
XMLUserDatabase.findByEmail(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given e-mail address.
|
abstract UserProfile |
AbstractUserDatabase.findByFullName(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given full name.
|
UserProfile |
DummyUserDatabase.findByFullName(java.lang.String index) |
No-op; always throws NoSuchPrincipalException .
|
UserProfile |
JDBCUserDatabase.findByFullName(java.lang.String index) |
|
UserProfile |
UserDatabase.findByFullName(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given full name.
|
UserProfile |
XMLUserDatabase.findByFullName(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given full name.
|
abstract UserProfile |
AbstractUserDatabase.findByLoginName(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given login name.
|
UserProfile |
DummyUserDatabase.findByLoginName(java.lang.String index) |
No-op; always throws NoSuchPrincipalException .
|
UserProfile |
JDBCUserDatabase.findByLoginName(java.lang.String index) |
|
UserProfile |
UserDatabase.findByLoginName(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given login name.
|
UserProfile |
XMLUserDatabase.findByLoginName(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given login name.
|
UserProfile |
DummyUserDatabase.findByUid(java.lang.String uid) |
No-op; always throws NoSuchPrincipalException .
|
UserProfile |
JDBCUserDatabase.findByUid(java.lang.String uid) |
|
UserProfile |
UserDatabase.findByUid(java.lang.String uid) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given unique ID (uid).
|
UserProfile |
XMLUserDatabase.findByUid(java.lang.String uid) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given unique ID (uid).
|
abstract UserProfile |
AbstractUserDatabase.findByWikiName(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given wiki name.
|
UserProfile |
DummyUserDatabase.findByWikiName(java.lang.String index) |
No-op; always throws NoSuchPrincipalException .
|
UserProfile |
JDBCUserDatabase.findByWikiName(java.lang.String index) |
|
UserProfile |
UserDatabase.findByWikiName(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given wiki name.
|
UserProfile |
XMLUserDatabase.findByWikiName(java.lang.String index) |
Looks up and returns the first UserProfile in the user database that matches a profile having a given wiki name.
|
UserProfile |
AbstractUserDatabase.newProfile() |
Factory method that instantiates a new DefaultUserProfile with a new, distinct unique identifier.
|
UserProfile |
UserDatabase.newProfile() |
Factory method that instantiates a new user profile.
|