public class UserSearchRequest extends Object
Modifier and Type | Class and Description |
---|---|
static class |
UserSearchRequest.Builder |
Modifier and Type | Method and Description |
---|---|
String |
getFilter()
When set, limits returned
users to only those whose
display names , e-mail addresses
or usernames contain the provided filter. |
String |
getGroup()
When set, limits returned
users to only those who are members of the specified group. |
Set<PermissionRequest> |
getPermissions()
When set, limits returned
users to only those who have all permissions as specified by
each contained permission request . |
@Nullable public String getFilter()
users
to only those whose
display names
, e-mail addresses
or usernames
contain the provided filter.
If this field is not set, users shall be returned regardless of their
display names
or e-mail addresses
or usernames
.
null
to return users regardless of display names or e-mail addresses or usernames.@Nullable public String getGroup()
users
to only those who are members of the specified group.
If this field is not set, users shall be returned regardless of their group membership.
null
to return users regardless of their group membership.@Nonnull public Set<PermissionRequest> getPermissions()
users
to only those who have all permissions as specified by
each contained permission request
.
An empty set indicates that users shall be returned regardless of their Permission
.
Copyright © 2022 Atlassian. All rights reserved.