Search in sources :

Example 16 with Role

use of com.google.api.ads.admanager.axis.v202205.Role in project googleads-java-lib by googleads.

the class UpdateUsers method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param userId the ID of the user to update.
 * @throws ApiException if the API request failed with one or more service errors.
 * @throws RemoteException if the API request failed due to other errors.
 */
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, long userId) throws RemoteException {
    // Get the UserService.
    UserServiceInterface userService = adManagerServices.get(session, UserServiceInterface.class);
    // Create a statement to only select a single user by ID.
    StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(1).withBindVariableValue("id", userId);
    // Get the user.
    UserPage page = userService.getUsersByStatement(statementBuilder.toStatement());
    User user = Iterables.getOnlyElement(Arrays.asList(page.getResults()));
    // Set the role of the user to a salesperson.
    // To determine what other roles exist, run GetAllRoles.java.
    user.setRoleId(-5L);
    // Update the user on the server.
    User[] users = userService.updateUsers(new User[] { user });
    for (User updatedUser : users) {
        System.out.printf("User with ID %d and name '%s' was updated.%n", updatedUser.getId(), updatedUser.getName());
    }
}
Also used : UserServiceInterface(com.google.api.ads.admanager.axis.v202205.UserServiceInterface) User(com.google.api.ads.admanager.axis.v202205.User) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202205.StatementBuilder) UserPage(com.google.api.ads.admanager.axis.v202205.UserPage)

Aggregations

Address (org.gluu.oxtrust.model.scim2.Address)5 Email (org.gluu.oxtrust.model.scim2.Email)5 Entitlement (org.gluu.oxtrust.model.scim2.Entitlement)5 Im (org.gluu.oxtrust.model.scim2.Im)5 PhoneNumber (org.gluu.oxtrust.model.scim2.PhoneNumber)5 Photo (org.gluu.oxtrust.model.scim2.Photo)5 Role (org.gluu.oxtrust.model.scim2.Role)5 X509Certificate (org.gluu.oxtrust.model.scim2.X509Certificate)5 UserServiceInterface (com.google.api.ads.admanager.axis.v202205.UserServiceInterface)4 GroupRef (org.gluu.oxtrust.model.scim2.GroupRef)4 User (com.google.api.ads.admanager.axis.v202205.User)3 ArrayList (java.util.ArrayList)3 GluuCustomPerson (org.gluu.oxtrust.model.GluuCustomPerson)3 Extension (org.gluu.oxtrust.model.scim2.Extension)2 User (org.gluu.oxtrust.model.scim2.User)2 Role (org.openstack4j.model.identity.v2.Role)2 CryptoKey (com.fathomdb.crypto.CryptoKey)1 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202205.StatementBuilder)1 Role (com.google.api.ads.admanager.axis.v202108.Role)1 UserServiceInterface (com.google.api.ads.admanager.axis.v202108.UserServiceInterface)1