public final class BoxUsersManagerImpl extends AbstractBoxResourceManager implements IBoxUsersManager
Constructor and Description |
---|
BoxUsersManagerImpl(IBoxConfig config,
IBoxResourceHub resourceHub,
IBoxJSONParser parser,
IBoxRequestAuth auth,
IBoxRESTClient restClient)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
BoxEmailAlias |
addEmailAlias(java.lang.String userId,
BoxEmailAliasRequestObject requestObject)
Adds a new email alias to the given user's account.
|
BoxUser |
createEnterpriseUser(BoxUserRequestObject requestObject)
Used to provision a new user in an enterprise.
|
void |
deleteEmailAlias(java.lang.String userId,
java.lang.String emailId,
BoxDefaultRequestObject requestObject)
Removes an email alias from a user.
|
java.util.List<BoxUser> |
getAllEnterpriseUser(BoxDefaultRequestObject requestObject,
java.lang.String filterTerm)
Get the list of all users for the Enterprise with their user_id, public_name, and login if the user is an enterprise admin.
|
BoxUser |
getCurrentUser(BoxDefaultRequestObject requestObject)
Get the current user's information.
|
static java.util.List<BoxEmailAlias> |
getEmailAliases(BoxCollection collection)
Deprecated.
|
java.util.List<BoxEmailAlias> |
getEmailAliases(java.lang.String userId,
BoxDefaultRequestObject requestObject)
Retrieves all email aliases for this user.
|
static java.util.List<BoxUser> |
getUsers(BoxCollection collection)
Deprecated.
|
BoxFolder |
moveFolderToAnotherUser(java.lang.String userId,
java.lang.String folderId,
BoxSimpleUserRequestObject requestObject)
Moves all of the content from within one user's folder into a new folder in another user's account.
|
BoxUser |
updateUserInformaiton(java.lang.String userId,
BoxUserRequestObject requestObject)
Used to edit the settings and information about a user.
|
BoxUser |
updateUserPrimaryLogin(java.lang.String userId,
BoxUserUpdateLoginRequestObject requestObject)
Used to convert one of the user's confirmed email aliases into the user's primary login.
|
executeRequestWithNoResponseBody, getAuth, getClassFromType, getConfig, getJSONParser, getResourceHub, getResponseAndParse, getResponseAndParseAndTryCast, getRestClient, tryCastBoxItem, tryCastObject
public BoxUsersManagerImpl(IBoxConfig config, IBoxResourceHub resourceHub, IBoxJSONParser parser, IBoxRequestAuth auth, IBoxRESTClient restClient)
config
- ConfigresourceHub
- IResourceHubparser
- json parserauth
- auth for api callsrestClient
- REST client to make api calls.public BoxUser getCurrentUser(BoxDefaultRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException
IBoxUsersManager
getCurrentUser
in interface IBoxUsersManager
requestObject
- request objectBoxRestException
- See BoxRestException
for more info.BoxServerException
- See com.box.restclientv2.exceptions.BoxServerException
for more info.AuthFatalFailureException
- See com.box.restclientv2.exceptions.AuthFatalFailureException
for more info.public java.util.List<BoxUser> getAllEnterpriseUser(BoxDefaultRequestObject requestObject, java.lang.String filterTerm) throws BoxRestException, BoxServerException, AuthFatalFailureException
IBoxUsersManager
getAllEnterpriseUser
in interface IBoxUsersManager
requestObject
- request objectfilterTerm
- A string used to filter the results to only users starting with the filter_term in either the name or the login. Use null if don't want
filter.BoxRestException
- See BoxRestException
for more info.BoxServerException
- See com.box.restclientv2.exceptions.BoxServerException
for more info.AuthFatalFailureException
- See com.box.restclientv2.exceptions.AuthFatalFailureException
for more info.public BoxFolder moveFolderToAnotherUser(java.lang.String userId, java.lang.String folderId, BoxSimpleUserRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException
IBoxUsersManager
moveFolderToAnotherUser
in interface IBoxUsersManager
userId
- id of the userfolderId
- id of the folder to be removedrequestObject
- request objectBoxRestException
- See BoxRestException
for more info.BoxServerException
- See com.box.restclientv2.exceptions.BoxServerException
for more info.AuthFatalFailureException
- See com.box.restclientv2.exceptions.AuthFatalFailureException
for more info.public BoxUser createEnterpriseUser(BoxUserRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException
IBoxUsersManager
createEnterpriseUser
in interface IBoxUsersManager
requestObject
- request objectBoxRestException
- See BoxRestException
for more info.BoxServerException
- See com.box.restclientv2.exceptions.BoxServerException
for more info.AuthFatalFailureException
- See com.box.restclientv2.exceptions.AuthFatalFailureException
for more info.public BoxUser updateUserInformaiton(java.lang.String userId, BoxUserRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException
IBoxUsersManager
updateUserInformaiton
in interface IBoxUsersManager
userId
- id of the user.requestObject
- request objectBoxRestException
- See BoxRestException
for more info.BoxServerException
- See com.box.restclientv2.exceptions.BoxServerException
for more info.AuthFatalFailureException
- See com.box.restclientv2.exceptions.AuthFatalFailureException
for more info.public java.util.List<BoxEmailAlias> getEmailAliases(java.lang.String userId, BoxDefaultRequestObject requestObject) throws BoxServerException, BoxRestException, AuthFatalFailureException
IBoxUsersManager
getEmailAliases
in interface IBoxUsersManager
userId
- id of userrequestObject
- request objectBoxServerException
- See com.box.restclientv2.exceptions.BoxServerException
for more info.BoxRestException
- See BoxRestException
for more info.AuthFatalFailureException
- See com.box.restclientv2.exceptions.AuthFatalFailureException
for more info.public BoxEmailAlias addEmailAlias(java.lang.String userId, BoxEmailAliasRequestObject requestObject) throws BoxServerException, BoxRestException, AuthFatalFailureException
IBoxUsersManager
addEmailAlias
in interface IBoxUsersManager
userId
- id of userrequestObject
- request objectBoxServerException
- See com.box.restclientv2.exceptions.BoxServerException
for more info.BoxRestException
- See BoxRestException
for more info.AuthFatalFailureException
- See com.box.restclientv2.exceptions.AuthFatalFailureException
for more info.public void deleteEmailAlias(java.lang.String userId, java.lang.String emailId, BoxDefaultRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException
IBoxUsersManager
deleteEmailAlias
in interface IBoxUsersManager
userId
- id of the useremailId
- id of the email alias to be removedrequestObject
- request objectBoxRestException
- See BoxRestException
for more info.BoxServerException
- See com.box.restclientv2.exceptions.BoxServerException
for more info.AuthFatalFailureException
- See com.box.restclientv2.exceptions.AuthFatalFailureException
for more info.public BoxUser updateUserPrimaryLogin(java.lang.String userId, BoxUserUpdateLoginRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException
IBoxUsersManager
updateUserPrimaryLogin
in interface IBoxUsersManager
userId
- id of the userrequestObject
- request objectBoxRestException
- See BoxRestException
for more info.BoxServerException
- See com.box.restclientv2.exceptions.BoxServerException
for more info.AuthFatalFailureException
- See com.box.restclientv2.exceptions.AuthFatalFailureException
for more info.@Deprecated public static java.util.List<BoxUser> getUsers(BoxCollection collection)
collection
- collection@Deprecated public static java.util.List<BoxEmailAlias> getEmailAliases(BoxCollection collection)
collection
- collection