Uses of Interface
org.apache.wiki.auth.user.UserProfile
| Package | Description |
|---|---|
| org.apache.wiki.auth |
Authentication, Authorization and the third A thing.
|
| org.apache.wiki.auth.user | |
| org.apache.wiki.filters |
Provides page and content filtering functionality for JSPWiki.
|
-
Uses of UserProfile in org.apache.wiki.auth
Methods in org.apache.wiki.auth that return UserProfile Modifier and Type Method Description UserProfileDefaultUserManager.JSONUserModule. getUserInfo(String uid)Directly returns the UserProfile object attached to an uid.UserProfileDefaultUserManager. getUserProfile(Session session)Retrieves theUserProfilefor the user in a session.UserProfileUserManager. getUserProfile(Session session)Retrieves theUserProfilefor the user in a session.UserProfileDefaultUserManager. parseProfile(Context context)Extracts user profile parameters from the HTTP request and populates a UserProfile with them.UserProfileUserManager. parseProfile(Context context)Extracts user profile parameters from the HTTP request and populates a UserProfile with them.Methods in org.apache.wiki.auth with parameters of type UserProfile Modifier and Type Method Description voidDefaultUserManager. setUserProfile(Session session, UserProfile profile)Saves theUserProfilefor the user in a wiki session.voidUserManager. setUserProfile(Session session, UserProfile profile)Saves theUserProfilefor the user in a wiki session.voidDefaultUserManager. startUserProfileCreationWorkflow(Session session, UserProfile profile)voidUserManager. startUserProfileCreationWorkflow(Session session, UserProfile profile)voidDefaultUserManager. validateProfile(Context context, UserProfile profile)Validates a user profile, and appends any errors to the session errors list.voidUserManager. validateProfile(Context context, UserProfile profile)Validates a user profile, and appends any errors to the session errors list. -
Uses of UserProfile in org.apache.wiki.auth.user
Classes in org.apache.wiki.auth.user that implement UserProfile Modifier and Type Class Description classDefaultUserProfileDefault implementation for representing wiki user information, such as the login name, full name, wiki name, and e-mail address.Methods in org.apache.wiki.auth.user that return UserProfile Modifier and Type Method Description UserProfileAbstractUserDatabase. find(String index)Looks up and returns the firstUserProfilein the user database that whose login name, full name, or wiki name matches the supplied string.UserProfileUserDatabase. find(String index)Looks up and returns the firstUserProfilein the user database that whose login name, full name, or wiki name matches the supplied string.UserProfileXMLUserDatabase. findBy(String attr, String value)abstract UserProfileAbstractUserDatabase. findByEmail(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given e-mail address.UserProfileDummyUserDatabase. findByEmail(String index)No-op; always throwsNoSuchPrincipalException.UserProfileJDBCUserDatabase. findByEmail(String index)UserProfileUserDatabase. findByEmail(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given e-mail address.UserProfileXMLUserDatabase. findByEmail(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given e-mail address.abstract UserProfileAbstractUserDatabase. findByFullName(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given full name.UserProfileDummyUserDatabase. findByFullName(String index)No-op; always throwsNoSuchPrincipalException.UserProfileJDBCUserDatabase. findByFullName(String index)UserProfileUserDatabase. findByFullName(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given full name.UserProfileXMLUserDatabase. findByFullName(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given full name.abstract UserProfileAbstractUserDatabase. findByLoginName(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given login name.UserProfileDummyUserDatabase. findByLoginName(String index)No-op; always throwsNoSuchPrincipalException.UserProfileJDBCUserDatabase. findByLoginName(String index)UserProfileUserDatabase. findByLoginName(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given login name.UserProfileXMLUserDatabase. findByLoginName(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given login name.UserProfileDummyUserDatabase. findByUid(String uid)No-op; always throwsNoSuchPrincipalException.UserProfileJDBCUserDatabase. findByUid(String uid)UserProfileUserDatabase. findByUid(String uid)Looks up and returns the firstUserProfilein the user database that matches a profile having a given unique ID (uid).UserProfileXMLUserDatabase. findByUid(String uid)Looks up and returns the firstUserProfilein the user database that matches a profile having a given unique ID (uid).abstract UserProfileAbstractUserDatabase. findByWikiName(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given wiki name.UserProfileDummyUserDatabase. findByWikiName(String index)No-op; always throwsNoSuchPrincipalException.UserProfileJDBCUserDatabase. findByWikiName(String index)UserProfileUserDatabase. findByWikiName(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given wiki name.UserProfileXMLUserDatabase. findByWikiName(String index)Looks up and returns the firstUserProfilein the user database that matches a profile having a given wiki name.UserProfileAbstractUserDatabase. newProfile()Factory method that instantiates a new DefaultUserProfile with a new, distinct unique identifier.UserProfileUserDatabase. newProfile()Factory method that instantiates a new user profile.Methods in org.apache.wiki.auth.user with parameters of type UserProfile Modifier and Type Method Description abstract voidAbstractUserDatabase. save(UserProfile profile)Saves aUserProfileto the user database, overwriting the existing profile if it exists.voidDummyUserDatabase. save(UserProfile profile)No-op.voidJDBCUserDatabase. save(UserProfile profile)voidUserDatabase. save(UserProfile profile)Saves aUserProfileto the user database, overwriting the existing profile if it exists.voidXMLUserDatabase. save(UserProfile profile)Saves aUserProfileto the user database, overwriting the existing profile if it exists. -
Uses of UserProfile in org.apache.wiki.filters
Methods in org.apache.wiki.filters with parameters of type UserProfile Modifier and Type Method Description booleanSpamFilter. isValidUserProfile(Context context, UserProfile profile)Checks whether the UserProfile matches certain checks.