use of com.google.api.ads.admanager.axis.v202111.ContactPage in project googleads-java-lib by googleads.
the class GetUninvitedContacts 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 {
ContactServiceInterface contactService = adManagerServices.get(session, ContactServiceInterface.class);
// Create a statement to select contacts.
StatementBuilder statementBuilder = new StatementBuilder().where("status = :status").orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT).withBindVariableValue("status", ContactStatus.UNINVITED.toString());
// Retrieve a small amount of contacts at a time, paging through
// until all contacts have been retrieved.
int totalResultSetSize = 0;
do {
ContactPage page = contactService.getContactsByStatement(statementBuilder.toStatement());
if (page.getResults() != null) {
// Print out some information for each contact.
totalResultSetSize = page.getTotalResultSetSize();
int i = page.getStartIndex();
for (Contact contact : page.getResults()) {
System.out.printf("%d) Contact with ID %d and name '%s' was found.%n", i++, contact.getId(), contact.getName());
}
}
statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
} while (statementBuilder.getOffset() < totalResultSetSize);
System.out.printf("Number of results found: %d%n", totalResultSetSize);
}
use of com.google.api.ads.admanager.axis.v202111.ContactPage in project googleads-java-lib by googleads.
the class GetUninvitedContacts 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 {
ContactServiceInterface contactService = adManagerServices.get(session, ContactServiceInterface.class);
// Create a statement to select contacts.
StatementBuilder statementBuilder = new StatementBuilder().where("status = :status").orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT).withBindVariableValue("status", ContactStatus.UNINVITED.toString());
// Retrieve a small amount of contacts at a time, paging through
// until all contacts have been retrieved.
int totalResultSetSize = 0;
do {
ContactPage page = contactService.getContactsByStatement(statementBuilder.toStatement());
if (page.getResults() != null) {
// Print out some information for each contact.
totalResultSetSize = page.getTotalResultSetSize();
int i = page.getStartIndex();
for (Contact contact : page.getResults()) {
System.out.printf("%d) Contact with ID %d and name '%s' was found.%n", i++, contact.getId(), contact.getName());
}
}
statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
} while (statementBuilder.getOffset() < totalResultSetSize);
System.out.printf("Number of results found: %d%n", totalResultSetSize);
}
use of com.google.api.ads.admanager.axis.v202111.ContactPage in project googleads-java-lib by googleads.
the class GetAllContacts 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 ContactService.
ContactServiceInterface contactService = adManagerServices.get(session, ContactServiceInterface.class);
// Create a statement to get all contacts.
StatementBuilder statementBuilder = new StatementBuilder().orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT);
// Default for total result set size.
int totalResultSetSize = 0;
do {
// Get contacts by statement.
ContactPage page = contactService.getContactsByStatement(statementBuilder.toStatement());
if (page.getResults() != null) {
totalResultSetSize = page.getTotalResultSetSize();
int i = page.getStartIndex();
for (Contact contact : page.getResults()) {
System.out.printf("%d) Contact with ID %d and name '%s' was found.%n", i++, contact.getId(), contact.getName());
}
}
statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
} while (statementBuilder.getOffset() < totalResultSetSize);
System.out.printf("Number of results found: %d%n", totalResultSetSize);
}
use of com.google.api.ads.admanager.axis.v202111.ContactPage in project googleads-java-lib by googleads.
the class UpdateContacts method runExample.
/**
* Runs the example.
*
* @param adManagerServices the services factory.
* @param session the session.
* @param contactId the ID of the contact 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 contactId) throws RemoteException {
// Get the ContactService.
ContactServiceInterface contactService = adManagerServices.get(session, ContactServiceInterface.class);
// Create a statement to only select a single contact by ID.
StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(1).withBindVariableValue("id", contactId);
// Get the contact.
ContactPage page = contactService.getContactsByStatement(statementBuilder.toStatement());
Contact contact = Iterables.getOnlyElement(Arrays.asList(page.getResults()));
// Update the address of the contact.
contact.setAddress("123 New Street, New York, NY, 10011");
// Update the contact on the server.
Contact[] contacts = contactService.updateContacts(new Contact[] { contact });
for (Contact updatedContact : contacts) {
System.out.printf("Contact with ID %d, name '%s', and address '%s' was updated.%n", updatedContact.getId(), updatedContact.getName(), updatedContact.getAddress());
}
}
Aggregations