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 theUserProfile
for the user in a session.UserManager.getUserProfile
(Session session) Retrieves theUserProfile
for 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 TypeMethodDescriptionvoid
DefaultUserManager.setUserProfile
(Context context, UserProfile profile) Saves theUserProfile
for the user in a wiki session.void
UserManager.setUserProfile
(Context context, UserProfile profile) Saves theUserProfile
for the user in a wiki session.void
DefaultUserManager.startUserProfileCreationWorkflow
(Context context, UserProfile profile) void
UserManager.startUserProfileCreationWorkflow
(Context context, UserProfile profile) void
DefaultUserManager.validateProfile
(Context context, UserProfile profile) Validates a user profile, and appends any errors to the session errors list.void
UserManager.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 class
Default 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 firstUserProfile
in the user database that whose login name, full name, or wiki name matches the supplied string.Looks up and returns the firstUserProfile
in the user database that whose login name, full name, or wiki name matches the supplied string.abstract UserProfile
AbstractUserDatabase.findByEmail
(String index) Looks up and returns the firstUserProfile
in 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 firstUserProfile
in the user database that matches a profile having a given e-mail address.XMLUserDatabase.findByEmail
(String index) Looks up and returns the firstUserProfile
in the user database that matches a profile having a given e-mail address.abstract UserProfile
AbstractUserDatabase.findByFullName
(String index) Looks up and returns the firstUserProfile
in 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 firstUserProfile
in the user database that matches a profile having a given full name.XMLUserDatabase.findByFullName
(String index) Looks up and returns the firstUserProfile
in the user database that matches a profile having a given full name.abstract UserProfile
AbstractUserDatabase.findByLoginName
(String index) Looks up and returns the firstUserProfile
in 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 firstUserProfile
in the user database that matches a profile having a given login name.XMLUserDatabase.findByLoginName
(String index) Looks up and returns the firstUserProfile
in the user database that matches a profile having a given login name.No-op; always throwsNoSuchPrincipalException
.Looks up and returns the firstUserProfile
in the user database that matches a profile having a given unique ID (uid).Looks up and returns the firstUserProfile
in the user database that matches a profile having a given unique ID (uid).abstract UserProfile
AbstractUserDatabase.findByWikiName
(String index) Looks up and returns the firstUserProfile
in 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 firstUserProfile
in the user database that matches a profile having a given wiki name.XMLUserDatabase.findByWikiName
(String index) Looks up and returns the firstUserProfile
in 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 void
AbstractUserDatabase.save
(UserProfile profile) Saves aUserProfile
to the user database, overwriting the existing profile if it exists.void
DummyUserDatabase.save
(UserProfile profile) No-op.void
JDBCUserDatabase.save
(UserProfile profile) void
UserDatabase.save
(UserProfile profile) Saves aUserProfile
to the user database, overwriting the existing profile if it exists.void
XMLUserDatabase.save
(UserProfile profile) Saves aUserProfile
to 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 TypeMethodDescriptionboolean
SpamFilter.isValidUserProfile
(Context context, UserProfile profile) Checks whether the UserProfile matches certain checks.