Uses of Interface
org.apache.wiki.auth.user.UserProfile
Packages that use UserProfile
Package
Description
Authentication, Authorization and the third A thing.
Provides page and content filtering functionality for JSPWiki.
-
Uses of UserProfile in org.apache.wiki.auth
Methods in org.apache.wiki.auth that return UserProfileModifier and TypeMethodDescriptionDefaultUserManager.JSONUserModule.getUserInfo(String uid) Directly returns the UserProfile object attached to an uid.DefaultUserManager.getUserProfile(Session session) Retrieves theUserProfilefor the user in a session.UserManager.getUserProfile(Session session) Retrieves theUserProfilefor the user in a session.DefaultUserManager.parseProfile(Context context) Extracts user profile parameters from the HTTP request and populates a UserProfile with them.UserManager.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 UserProfileModifier and TypeMethodDescriptionvoidDefaultUserManager.setUserProfile(Context context, UserProfile profile) Saves theUserProfilefor the user in a wiki session.voidUserManager.setUserProfile(Context context, UserProfile profile) Saves theUserProfilefor the user in a wiki session.voidDefaultUserManager.startUserProfileCreationWorkflow(Context context, UserProfile profile) voidUserManager.startUserProfileCreationWorkflow(Context context, 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 UserProfileModifier and TypeClassDescriptionfinal classDefault 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 UserProfileModifier and TypeMethodDescriptionLooks up and returns the firstUserProfilein the user database that whose login name, full name, or wiki name matches the supplied string.Looks up and returns the firstUserProfilein the user database that whose login name, full name, or wiki name matches the supplied string.abstract UserProfileAbstractUserDatabase.findByEmail(String index) Looks up and returns the firstUserProfilein the user database that matches a profile having a given e-mail address.DummyUserDatabase.findByEmail(String index) No-op; always throwsNoSuchPrincipalException.JDBCUserDatabase.findByEmail(String index) UserDatabase.findByEmail(String index) Looks up and returns the firstUserProfilein the user database that matches a profile having a given e-mail address.XMLUserDatabase.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.DummyUserDatabase.findByFullName(String index) No-op; always throwsNoSuchPrincipalException.JDBCUserDatabase.findByFullName(String index) UserDatabase.findByFullName(String index) Looks up and returns the firstUserProfilein the user database that matches a profile having a given full name.XMLUserDatabase.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.DummyUserDatabase.findByLoginName(String index) No-op; always throwsNoSuchPrincipalException.JDBCUserDatabase.findByLoginName(String index) UserDatabase.findByLoginName(String index) Looks up and returns the firstUserProfilein the user database that matches a profile having a given login name.XMLUserDatabase.findByLoginName(String index) Looks up and returns the firstUserProfilein the user database that matches a profile having a given login name.No-op; always throwsNoSuchPrincipalException.Looks up and returns the firstUserProfilein the user database that matches a profile having a given unique ID (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.DummyUserDatabase.findByWikiName(String index) No-op; always throwsNoSuchPrincipalException.JDBCUserDatabase.findByWikiName(String index) UserDatabase.findByWikiName(String index) Looks up and returns the firstUserProfilein the user database that matches a profile having a given wiki name.XMLUserDatabase.findByWikiName(String index) Looks up and returns the firstUserProfilein the user database that matches a profile having a given wiki name.AbstractUserDatabase.newProfile()Factory method that instantiates a new DefaultUserProfile with a new, distinct unique identifier.UserDatabase.newProfile()Factory method that instantiates a new user profile.Methods in org.apache.wiki.auth.user with parameters of type UserProfileModifier and TypeMethodDescriptionabstract 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 UserProfileModifier and TypeMethodDescriptionbooleanSpamFilter.isValidUserProfile(Context context, UserProfile profile) Checks whether the UserProfile matches certain checks.