public class UsersResource extends Object
| Constructor and Description |
|---|
UsersResource(UsersEntityBuilder usersEntityBuilder,
PermissionManager permissionManager,
UserAccessor userAccessor,
SpaceManager spaceManager) |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
createUser(UserCreateRequestEntity request) |
javax.ws.rs.core.Response |
createUsers(String usernamesStr,
String emailDomain)
Accepts comma-separated usernames and creates users for them, with each user's email address the username plus
'@' and the domain name.
|
javax.ws.rs.core.Response |
getUsers(String query,
String spaceKey,
int start,
int limit)
This end point will search and return a paginated list of users based on the query provided.
|
public UsersResource(UsersEntityBuilder usersEntityBuilder, PermissionManager permissionManager, UserAccessor userAccessor, SpaceManager spaceManager)
public javax.ws.rs.core.Response getUsers(String query, String spaceKey, int start, int limit)
query - the query string. It may contain the asterisk wildcardsspaceKey - the space key if the space admin is searching in a spacestart - the start indexlimit - the limit of the resultpublic javax.ws.rs.core.Response createUser(UserCreateRequestEntity request)
public javax.ws.rs.core.Response createUsers(String usernamesStr, String emailDomain)
usernamesStr - a comma-separated list of usernames to createemailDomain - the domain name for the email-address to create for each userCopyright © 2003–2020 Atlassian. All rights reserved.