Uses of Class
com.atlassian.crowd.openid.server.model.user.User

Packages that use User
com.atlassian.crowd.openid.server.action.secure.interaction   
com.atlassian.crowd.openid.server.action.secure.profile   
com.atlassian.crowd.openid.server.manager.openid   
com.atlassian.crowd.openid.server.manager.profile   
com.atlassian.crowd.openid.server.manager.site   
com.atlassian.crowd.openid.server.manager.user   
com.atlassian.crowd.openid.server.model.approval   
com.atlassian.crowd.openid.server.model.profile   
com.atlassian.crowd.openid.server.model.record   
com.atlassian.crowd.openid.server.model.user   
 

Uses of User in com.atlassian.crowd.openid.server.action.secure.interaction
 

Methods in com.atlassian.crowd.openid.server.action.secure.interaction that return User
 User AllowAuthentication.getUser()
           
 

Methods in com.atlassian.crowd.openid.server.action.secure.interaction with parameters of type User
 void AllowAuthentication.setUser(User user)
           
 

Uses of User in com.atlassian.crowd.openid.server.action.secure.profile
 

Methods in com.atlassian.crowd.openid.server.action.secure.profile that return User
 User EditProfiles.getUser()
           
 

Methods in com.atlassian.crowd.openid.server.action.secure.profile with parameters of type User
 void EditProfiles.setUser(User user)
           
 

Uses of User in com.atlassian.crowd.openid.server.manager.openid
 

Methods in com.atlassian.crowd.openid.server.manager.openid with parameters of type User
 OpenIDAuthResponse OpenIDAuthenticationManager.allowRequest(User user, long profileID, OpenIDAuthRequest authReq, boolean alwaysAllow)
          Process a request if the "allow" or "allow always" action is taken by the user when a site has requested authentication.
 OpenIDAuthResponse OpenIDAuthenticationManagerGeneric.allowRequest(User user, long profileID, OpenIDAuthRequest authReq, boolean alwaysAllow)
          Process a request if the "allow" or "allow always" action is taken by the user when a site has requested authentication.
 OpenIDAuthResponse OpenIDAuthenticationManager.autoAllowRequest(User user, OpenIDAuthRequest authReq)
          Processes a request if the "allow_always" flag has been set for the requesting site.
 OpenIDAuthResponse OpenIDAuthenticationManagerGeneric.autoAllowRequest(User user, OpenIDAuthRequest authReq)
          Processes a request if the "allow_always" flag has been set for the requesting site.
protected  void OpenIDAuthenticationManagerGeneric.createAuthRecord(User user, Site site, AuthAction authAction)
          Creates an AuthRecord for the user/site/action combination.
 OpenIDAuthResponse OpenIDAuthenticationManager.denyRequest(User user, OpenIDAuthRequest authReq)
          Process a request if the "deny" action is taken by the user when a site has requested authentication.
 OpenIDAuthResponse OpenIDAuthenticationManagerGeneric.denyRequest(User user, OpenIDAuthRequest authReq)
          Process a request if the "deny" action is taken by the user when a site has requested authentication.
 void OpenIDAuthenticationManager.validateRequest(User user, OpenIDAuthRequest authReq)
          Validates the OpenID authentication request.
 void OpenIDAuthenticationManagerGeneric.validateRequest(User user, OpenIDAuthRequest authReq)
          Validates the OpenID authentication request.
 

Uses of User in com.atlassian.crowd.openid.server.manager.profile
 

Methods in com.atlassian.crowd.openid.server.manager.profile with parameters of type User
 Profile ProfileManager.addNewPopulatedProfile(User user, java.lang.String profileName, java.util.Map attributes)
          Adds a new profile based on attribute name/value pairs.
 Profile ProfileManagerGeneric.addNewPopulatedProfile(User user, java.lang.String profileName, java.util.Map attributes)
          Adds a new profile based on attribute name/value pairs.
 Profile ProfileManager.addNewProfile(User user, SOAPPrincipal principal, java.util.Locale locale, java.lang.String profileName)
          Creates and adds a new profile to a given user.
 Profile ProfileManagerGeneric.addNewProfile(User user, SOAPPrincipal principal, java.util.Locale locale, java.lang.String profileName)
          Creates and adds a new profile to a given user.
 void ProfileManager.deleteProfile(User user, long profileID)
          Deletes a the given profile from a user.
 void ProfileManagerGeneric.deleteProfile(User user, long profileID)
          Deletes a the given profile from a user.
 Profile ProfileManager.getProfile(User user, long profileID)
          Retrieves the requested profile from a user.
 Profile ProfileManagerGeneric.getProfile(User user, long profileID)
          Retrieves the requested profile from a user.
 void ProfileManager.makeDefaultProfile(User user, long profileID)
          Changes the default profile of a user.
 void ProfileManagerGeneric.makeDefaultProfile(User user, long profileID)
          Changes the default profile of a user.
 void ProfileManager.renameProfile(User user, long profileID, java.lang.String newName)
          Rename an existing profile of a user.
 void ProfileManagerGeneric.renameProfile(User user, long profileID, java.lang.String newName)
          Rename an existing profile of a user.
 void ProfileManager.updateProfile(User user, long profileID, java.util.Map attributes)
          Updates a user's profile given a map of attributes.
 void ProfileManagerGeneric.updateProfile(User user, long profileID, java.util.Map attributes)
          Updates a user's profile given a map of attributes.
 

Uses of User in com.atlassian.crowd.openid.server.manager.site
 

Methods in com.atlassian.crowd.openid.server.manager.site with parameters of type User
 java.util.List SiteManagerGeneric.getAllAlwaysAllowSites(User user)
          Returns all the sites marked 'always allow' for a user.
 java.util.List SiteManager.getAllAlwaysAllowSites(User user)
          Returns all the sites marked 'always allow' for a user.
 SiteApproval SiteManagerGeneric.getSiteApproval(User user, java.lang.String url)
          Gets the SiteApproval of a user for a URL.
 SiteApproval SiteManager.getSiteApproval(User user, java.lang.String url)
          Gets the SiteApproval of a user for a URL.
 SiteApproval SiteManagerGeneric.setSiteApproval(User user, java.lang.String url, long profileID, boolean alwaysAllow)
          Updates or creates site approval for a particular site (URL) associated with a user and a profile of that user.
 SiteApproval SiteManager.setSiteApproval(User user, java.lang.String url, long profileID, boolean alwaysAllow)
          Updates or creates site approval for a particular site (URL) associated with a user and a profile of that user.
 void SiteManagerGeneric.updateAlwaysAllowApprovals(User user, java.util.List urls, java.util.List profileIDs)
          Updates which sites are always allowed to authenticate.
 void SiteManager.updateAlwaysAllowApprovals(User user, java.util.List urls, java.util.List profileIDs)
          Updates which sites are always allowed to authenticate.
 

Uses of User in com.atlassian.crowd.openid.server.manager.user
 

Methods in com.atlassian.crowd.openid.server.manager.user that return User
 User UserManager.getUser(SOAPPrincipal principal, java.util.Locale locale)
          Retrieves or creates a User from the database matching the name of the supplied SOAPPrincipal.
 User UserManagerGeneric.getUser(SOAPPrincipal principal, java.util.Locale locale)
          Retrieves or creates a User from the database matching the name of the supplied SOAPPrincipal.
 

Methods in com.atlassian.crowd.openid.server.manager.user with parameters of type User
 java.util.List UserManager.getAuthRecords(User user, int startIndex, int maxResults)
          Retrieves a subset of the authentication history for a given user, in reverse chronological order.
 java.util.List UserManagerGeneric.getAuthRecords(User user, int startIndex, int maxResults)
           
 int UserManager.getTotalAuthRecords(User user)
          Retrieves the total number of authentication records for a given user.
 int UserManagerGeneric.getTotalAuthRecords(User user)
           
 

Uses of User in com.atlassian.crowd.openid.server.model.approval
 

Methods in com.atlassian.crowd.openid.server.model.approval that return User
 User SiteApproval.getUser()
           
 

Methods in com.atlassian.crowd.openid.server.model.approval with parameters of type User
 java.util.List SiteApprovalDAO.findAlwaysAllow(User user)
           
 java.util.List SiteApprovalDAOHibernate.findAlwaysAllow(User user)
           
 SiteApproval SiteApprovalDAO.findBySite(User user, Site site)
           
 SiteApproval SiteApprovalDAOHibernate.findBySite(User user, Site site)
           
 void SiteApproval.setUser(User user)
           
 

Constructors in com.atlassian.crowd.openid.server.model.approval with parameters of type User
SiteApproval(User user, Profile profile, Site site, boolean alwaysAllow)
           
 

Uses of User in com.atlassian.crowd.openid.server.model.profile
 

Methods in com.atlassian.crowd.openid.server.model.profile with parameters of type User
 Profile ProfileDAO.findProfileByName(java.lang.String name, User user)
          Finds a profile for a user given a specific name.
 Profile ProfileDAOHibernate.findProfileByName(java.lang.String name, User user)
           
 

Uses of User in com.atlassian.crowd.openid.server.model.record
 

Methods in com.atlassian.crowd.openid.server.model.record that return User
 User AuthRecord.getUser()
           
 

Methods in com.atlassian.crowd.openid.server.model.record with parameters of type User
 java.util.List AuthRecordDAOHibernate.findRecords(User user)
           
 java.util.List AuthRecordDAO.findRecords(User user)
          Finds all the AuthRecords for a given user.
 java.util.List AuthRecordDAOHibernate.findRecords(User user, int startIndex, int numRecords)
           
 java.util.List AuthRecordDAO.findRecords(User user, int startIndex, int numRecords)
          Finds a subset of the AuthRecords for a given user.
 int AuthRecordDAOHibernate.findTotalRecords(User user)
           
 int AuthRecordDAO.findTotalRecords(User user)
          Finds the total number of authentication records that exist for a given user.
 void AuthRecord.setUser(User user)
           
 

Constructors in com.atlassian.crowd.openid.server.model.record with parameters of type User
AuthRecord(User user, Site site, AuthAction authAction)
           
 

Uses of User in com.atlassian.crowd.openid.server.model.user
 

Methods in com.atlassian.crowd.openid.server.model.user that return User
 User UserDAO.findByUsername(java.lang.String name)
           
 User UserDAOHibernate.findByUsername(java.lang.String username)
           
 



Copyright © 2012 Atlassian. All Rights Reserved.