Search in sources :

Example 6 with UserServiceInterface

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

the class GetAllUsers 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);
    // Create a statement to get all users.
    StatementBuilder statementBuilder = new StatementBuilder().orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT);
    // Default for total result set size.
    int totalResultSetSize = 0;
    do {
        // Get users by statement.
        UserPage page = userService.getUsersByStatement(statementBuilder.toStatement());
        if (page.getResults() != null) {
            totalResultSetSize = page.getTotalResultSetSize();
            int i = page.getStartIndex();
            for (User user : page.getResults()) {
                System.out.printf("%d) User with ID %d and name '%s' was found.%n", i++, user.getId(), user.getName());
            }
        }
        statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
    } while (statementBuilder.getOffset() < totalResultSetSize);
    System.out.printf("Number of results found: %d%n", totalResultSetSize);
}
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 7 with UserServiceInterface

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

the class GetCurrentUser 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 the current user.
    User user = userService.getCurrentUser();
    System.out.printf("User with ID %d, name '%s', email '%s', and role '%s' is the current user.%n", user.getId(), user.getName(), user.getEmail(), user.getRoleName());
}
Also used : UserServiceInterface(com.google.api.ads.admanager.axis.v202202.UserServiceInterface) User(com.google.api.ads.admanager.axis.v202202.User)

Example 8 with UserServiceInterface

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

the class CreateUsers method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param emailAddress the email address of the user.
 * @param name the name of the user.
 * @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, String emailAddress, String name) throws RemoteException {
    // Get the UserService.
    UserServiceInterface userService = adManagerServices.get(session, UserServiceInterface.class);
    // Create a user.
    User traffickerUser = new User();
    traffickerUser.setEmail(emailAddress);
    traffickerUser.setName(name);
    // Set the system defined ID of the trafficker role.
    // To determine what other roles exist, run GetAllRoles.java.
    traffickerUser.setRoleId(-7L);
    // Create the user on the server.
    User[] users = userService.createUsers(new User[] { traffickerUser });
    for (User createdUser : users) {
        System.out.printf("A user with ID %d and name '%s' was created.%n", createdUser.getId(), createdUser.getName());
    }
}
Also used : UserServiceInterface(com.google.api.ads.admanager.axis.v202111.UserServiceInterface) User(com.google.api.ads.admanager.axis.v202111.User)

Example 9 with UserServiceInterface

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

the class GetAllUsers 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);
    // Create a statement to get all users.
    StatementBuilder statementBuilder = new StatementBuilder().orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT);
    // Default for total result set size.
    int totalResultSetSize = 0;
    do {
        // Get users by statement.
        UserPage page = userService.getUsersByStatement(statementBuilder.toStatement());
        if (page.getResults() != null) {
            totalResultSetSize = page.getTotalResultSetSize();
            int i = page.getStartIndex();
            for (User user : page.getResults()) {
                System.out.printf("%d) User with ID %d and name '%s' was found.%n", i++, user.getId(), user.getName());
            }
        }
        statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
    } while (statementBuilder.getOffset() < totalResultSetSize);
    System.out.printf("Number of results found: %d%n", totalResultSetSize);
}
Also used : UserServiceInterface(com.google.api.ads.admanager.axis.v202111.UserServiceInterface) User(com.google.api.ads.admanager.axis.v202111.User) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202111.StatementBuilder) UserPage(com.google.api.ads.admanager.axis.v202111.UserPage)

Example 10 with UserServiceInterface

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

the class CreateUsers method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param emailAddress the email address of the user.
 * @param name the name of the user.
 * @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, String emailAddress, String name) throws RemoteException {
    // Get the UserService.
    UserServiceInterface userService = adManagerServices.get(session, UserServiceInterface.class);
    // Create a user.
    User traffickerUser = new User();
    traffickerUser.setEmail(emailAddress);
    traffickerUser.setName(name);
    // Set the system defined ID of the trafficker role.
    // To determine what other roles exist, run GetAllRoles.java.
    traffickerUser.setRoleId(-7L);
    // Create the user on the server.
    User[] users = userService.createUsers(new User[] { traffickerUser });
    for (User createdUser : users) {
        System.out.printf("A user with ID %d and name '%s' was created.%n", createdUser.getId(), createdUser.getName());
    }
}
Also used : UserServiceInterface(com.google.api.ads.admanager.axis.v202108.UserServiceInterface) User(com.google.api.ads.admanager.axis.v202108.User)

Aggregations

UserServiceInterface (com.google.api.ads.admanager.axis.v202108.UserServiceInterface)7 UserServiceInterface (com.google.api.ads.admanager.axis.v202111.UserServiceInterface)7 UserServiceInterface (com.google.api.ads.admanager.axis.v202202.UserServiceInterface)7 UserServiceInterface (com.google.api.ads.admanager.axis.v202205.UserServiceInterface)7 User (com.google.api.ads.admanager.axis.v202108.User)6 User (com.google.api.ads.admanager.axis.v202111.User)6 User (com.google.api.ads.admanager.axis.v202202.User)6 User (com.google.api.ads.admanager.axis.v202205.User)6 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202108.StatementBuilder)4 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202111.StatementBuilder)4 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder)4 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202205.StatementBuilder)4 UserPage (com.google.api.ads.admanager.axis.v202108.UserPage)4 UserPage (com.google.api.ads.admanager.axis.v202111.UserPage)4 UserPage (com.google.api.ads.admanager.axis.v202202.UserPage)4 UserPage (com.google.api.ads.admanager.axis.v202205.UserPage)4 Role (com.google.api.ads.admanager.axis.v202108.Role)1 UpdateResult (com.google.api.ads.admanager.axis.v202108.UpdateResult)1 Role (com.google.api.ads.admanager.axis.v202111.Role)1 UpdateResult (com.google.api.ads.admanager.axis.v202111.UpdateResult)1