public class

DefaultUserPickerSearchService

extends Object
implements UserPickerSearchService
java.lang.Object
   ↳ com.atlassian.jira.bc.user.search.DefaultUserPickerSearchService

Summary

Public Constructors
DefaultUserPickerSearchService(UserManager userManager, ApplicationProperties applicationProperties, JiraAuthenticationContext authenticationContext, PermissionManager permissionManager, GroupManager groupManager, ProjectManager projectManager, ProjectRoleManager projectRoleManager)
Constructs a DefaultUserPickerSearchService
Public Methods
boolean canPerformAjaxSearch(ApplicationUser user)
Determines whether the given user could perform AJAX search.
boolean canPerformAjaxSearch(User user)
boolean canPerformAjaxSearch(JiraServiceContext jiraServiceContext)
Returns true only if UserPicker Ajax search is enabled AND the user in the context has User Browse permission.
boolean canShowEmailAddresses(JiraServiceContext jiraServiceContext)
Whether or not the UserPicker Ajax should search or show email addresses
List<User> findUsers(String nameQuery, String emailQuery, UserSearchParams userSearchParams)
Get Users based on query strings.
List<User> findUsers(JiraServiceContext jiraServiceContext, String query, UserSearchParams userSearchParams)
Get Users based on a query string.
List<User> findUsers(String query, UserSearchParams userSearchParams)
Get Users based on a query string.
List<User> findUsers(JiraServiceContext jiraServiceContext, String query)
Get Users based on a query string.
List<User> findUsersAllowEmptyQuery(JiraServiceContext jiraServiceContext, String query)
Get Users based on a query string.
User getUserByName(JiraServiceContext jiraServiceContext, String query)
Returns a user by exact username
boolean userMatches(ApplicationUser user, UserSearchParams userSearchParams)
Determine whether a user matches the search criteria specified in the userSearchParams parameter.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.bc.user.search.UserPickerSearchService

Public Constructors

public DefaultUserPickerSearchService (UserManager userManager, ApplicationProperties applicationProperties, JiraAuthenticationContext authenticationContext, PermissionManager permissionManager, GroupManager groupManager, ProjectManager projectManager, ProjectRoleManager projectRoleManager)

Constructs a DefaultUserPickerSearchService

Parameters
userManager the UserUtil needed
applicationProperties the ApplicationProperties
permissionManager needed to resolve permissions

Public Methods

public boolean canPerformAjaxSearch (ApplicationUser user)

Determines whether the given user could perform AJAX search.

public boolean canPerformAjaxSearch (User user)

public boolean canPerformAjaxSearch (JiraServiceContext jiraServiceContext)

Returns true only if UserPicker Ajax search is enabled AND the user in the context has User Browse permission.

Parameters
jiraServiceContext Jira Service Context
Returns
  • True if enabled, otherwise false

public boolean canShowEmailAddresses (JiraServiceContext jiraServiceContext)

Whether or not the UserPicker Ajax should search or show email addresses

Parameters
jiraServiceContext Jira Service Context
Returns
  • True if email addresses can be shown, otherwise false

public List<User> findUsers (String nameQuery, String emailQuery, UserSearchParams userSearchParams)

Get Users based on query strings.

Matches nameQuery on the start of username and each word in Full Name & email.

Matches emailQuery on start of email. Email matching is performed only when userSearchParams.canMatchEmail() is true. Results are sorted according to the userSearchParams.comparator. If userSearchParams.comparator is null, no sorting will be performed.

Parameters
nameQuery the query to search username and display name.
emailQuery the query to search email address, subject to userSearchParams.canMatchEmail.
userSearchParams the search criteria
Returns
  • the list of matched users

public List<User> findUsers (JiraServiceContext jiraServiceContext, String query, UserSearchParams userSearchParams)

Get Users based on a query string.

Matches on the start of username and each word in Full Name & email.

Results are sorted according to the UserCachingComparator.

Parameters
jiraServiceContext Jira Service Context
query String to search for.
userSearchParams Additional search parameters
Returns
  • List of User objects that match criteria.

public List<User> findUsers (String query, UserSearchParams userSearchParams)

Get Users based on a query string.

Matches on the start of username and each word in Full Name & email.

Matches email only when userSearchParams.canMatchEmail() is true. Results are sorted according to the userSearchParams.comparator. If userSearchParams.comparator is null, no sorting will be performed.

Parameters
query the query to search username, display name and email address
userSearchParams the search criteria
Returns
  • the list of matched users

public List<User> findUsers (JiraServiceContext jiraServiceContext, String query)

Get Users based on a query string.

Matches on the start of username and each word in Full Name & email. Only returns active users.

Results are sorted according to the UserCachingComparator.

Parameters
jiraServiceContext Jira Service Context
query String to search for.
Returns
  • List of User objects that match criteria.

public List<User> findUsersAllowEmptyQuery (JiraServiceContext jiraServiceContext, String query)

Get Users based on a query string.

Matches on the start of username and each word in Full Name & email. This will search even if the query passed is null or empty. Only returns active users.

Results are sorted according to the UserCachingComparator.

Parameters
jiraServiceContext Jira Service Context
query String to search for.
Returns
  • List of User objects that match criteria.

public User getUserByName (JiraServiceContext jiraServiceContext, String query)

Returns a user by exact username

Parameters
jiraServiceContext Jira Service Context
query String to search for.
Returns
  • The User object with supplied username.

public boolean userMatches (ApplicationUser user, UserSearchParams userSearchParams)

Determine whether a user matches the search criteria specified in the userSearchParams parameter.

allowEmptyQuery in userSearchParams is ignored.

Parameters
user the user to be matched
userSearchParams the search criteria
Returns
  • true if the user matches the search criteria