Search in sources :

Example 11 with Role

use of com.google.api.ads.admanager.axis.v202202.Role in project openstack4j by ContainX.

the class RoleServiceImpl method getByName.

/**
 * {@inheritDoc}
 */
@Override
public Role getByName(String name) {
    // Due to a bug in OpenStack Rest Service (not returning documented query) we will manually match on the list until it's resolved. Since the contract of the
    // API is against the interface we can change this anytime
    checkNotNull(name);
    List<? extends Role> roles = list();
    for (Role r : roles) {
        if (name.equalsIgnoreCase(r.getName()))
            return r;
    }
    return null;
}
Also used : KeystoneCreateRole(org.openstack4j.openstack.identity.v2.domain.KeystoneCreateRole) Role(org.openstack4j.model.identity.v2.Role) KeystoneRole(org.openstack4j.openstack.identity.v2.domain.KeystoneRole)

Example 12 with Role

use of com.google.api.ads.admanager.axis.v202202.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.v202202.UserServiceInterface) User(com.google.api.ads.admanager.axis.v202202.User) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder) UserPage(com.google.api.ads.admanager.axis.v202202.UserPage)

Example 13 with Role

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

the class GetAllRoles method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @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) throws RemoteException {
    // Get the UserService.
    UserServiceInterface userService = adManagerServices.get(session, UserServiceInterface.class);
    // Get all roles.
    Role[] roles = userService.getAllRoles();
    int i = 0;
    for (Role role : roles) {
        System.out.printf("%d) Role with ID %d and name '%s' was found.%n", i++, role.getId(), role.getName());
    }
    System.out.printf("Number of results found: %d%n", roles.length);
}
Also used : Role(com.google.api.ads.admanager.axis.v202202.Role) UserServiceInterface(com.google.api.ads.admanager.axis.v202202.UserServiceInterface)

Example 14 with Role

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

the class GetAllRoles method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @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) throws RemoteException {
    // Get the UserService.
    UserServiceInterface userService = adManagerServices.get(session, UserServiceInterface.class);
    // Get all roles.
    Role[] roles = userService.getAllRoles();
    int i = 0;
    for (Role role : roles) {
        System.out.printf("%d) Role with ID %d and name '%s' was found.%n", i++, role.getId(), role.getName());
    }
    System.out.printf("Number of results found: %d%n", roles.length);
}
Also used : Role(com.google.api.ads.admanager.axis.v202108.Role) UserServiceInterface(com.google.api.ads.admanager.axis.v202108.UserServiceInterface)

Example 15 with Role

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

the class GetAllRoles method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @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) throws RemoteException {
    // Get the UserService.
    UserServiceInterface userService = adManagerServices.get(session, UserServiceInterface.class);
    // Get all roles.
    Role[] roles = userService.getAllRoles();
    int i = 0;
    for (Role role : roles) {
        System.out.printf("%d) Role with ID %d and name '%s' was found.%n", i++, role.getId(), role.getName());
    }
    System.out.printf("Number of results found: %d%n", roles.length);
}
Also used : Role(com.google.api.ads.admanager.axis.v202111.Role) UserServiceInterface(com.google.api.ads.admanager.axis.v202111.UserServiceInterface)

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.v202202.UserServiceInterface)4 GroupRef (org.gluu.oxtrust.model.scim2.GroupRef)4 User (com.google.api.ads.admanager.axis.v202202.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.v202202.StatementBuilder)1 Role (com.google.api.ads.admanager.axis.v202108.Role)1 UserServiceInterface (com.google.api.ads.admanager.axis.v202108.UserServiceInterface)1