use of com.google.api.ads.admanager.axis.v202108.TeamPage in project googleads-java-lib by googleads.
the class UpdateTeams method runExample.
/**
* Runs the example.
*
* @param adManagerServices the services factory.
* @param session the session.
* @param teamId the ID of the team 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 teamId) throws RemoteException {
// Get the TeamService.
TeamServiceInterface teamService = adManagerServices.get(session, TeamServiceInterface.class);
// Create a statement to only select a single team by ID.
StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(1).withBindVariableValue("id", teamId);
// Get the team.
TeamPage page = teamService.getTeamsByStatement(statementBuilder.toStatement());
Team team = Iterables.getOnlyElement(Arrays.asList(page.getResults()));
String newDescription = team.getDescription() + " - UPDATED";
team.setDescription(newDescription);
// Update the team on the server.
Team[] teams = teamService.updateTeams(new Team[] { team });
for (Team updatedTeam : teams) {
System.out.printf("Team with ID %d and name '%s' was updated.%n", updatedTeam.getId(), updatedTeam.getName());
}
}
use of com.google.api.ads.admanager.axis.v202108.TeamPage in project googleads-java-lib by googleads.
the class GetAllTeams 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 TeamService.
TeamServiceInterface teamService = adManagerServices.get(session, TeamServiceInterface.class);
// Create a statement to select all teams.
StatementBuilder statementBuilder = new StatementBuilder().orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT);
// Default for total result set size.
int totalResultSetSize = 0;
do {
// Get teams by statement.
TeamPage page = teamService.getTeamsByStatement(statementBuilder.toStatement());
if (page.getResults() != null) {
totalResultSetSize = page.getTotalResultSetSize();
int i = page.getStartIndex();
for (Team team : page.getResults()) {
System.out.printf("%d) Team with ID %d and name '%s' was found.%n", i++, team.getId(), team.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.v202108.TeamPage in project googleads-java-lib by googleads.
the class GetAllTeams 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 TeamService.
TeamServiceInterface teamService = adManagerServices.get(session, TeamServiceInterface.class);
// Create a statement to select all teams.
StatementBuilder statementBuilder = new StatementBuilder().orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT);
// Default for total result set size.
int totalResultSetSize = 0;
do {
// Get teams by statement.
TeamPage page = teamService.getTeamsByStatement(statementBuilder.toStatement());
if (page.getResults() != null) {
totalResultSetSize = page.getTotalResultSetSize();
int i = page.getStartIndex();
for (Team team : page.getResults()) {
System.out.printf("%d) Team with ID %d and name '%s' was found.%n", i++, team.getId(), team.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.v202108.TeamPage in project googleads-java-lib by googleads.
the class UpdateTeams method runExample.
/**
* Runs the example.
*
* @param adManagerServices the services factory.
* @param session the session.
* @param teamId the ID of the team 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 teamId) throws RemoteException {
// Get the TeamService.
TeamServiceInterface teamService = adManagerServices.get(session, TeamServiceInterface.class);
// Create a statement to only select a single team by ID.
StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(1).withBindVariableValue("id", teamId);
// Get the team.
TeamPage page = teamService.getTeamsByStatement(statementBuilder.toStatement());
Team team = Iterables.getOnlyElement(Arrays.asList(page.getResults()));
String newDescription = team.getDescription() + " - UPDATED";
team.setDescription(newDescription);
// Update the team on the server.
Team[] teams = teamService.updateTeams(new Team[] { team });
for (Team updatedTeam : teams) {
System.out.printf("Team with ID %d and name '%s' was updated.%n", updatedTeam.getId(), updatedTeam.getName());
}
}
use of com.google.api.ads.admanager.axis.v202108.TeamPage in project googleads-java-lib by googleads.
the class UpdateTeams method runExample.
/**
* Runs the example.
*
* @param adManagerServices the services factory.
* @param session the session.
* @param teamId the ID of the team 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 teamId) throws RemoteException {
// Get the TeamService.
TeamServiceInterface teamService = adManagerServices.get(session, TeamServiceInterface.class);
// Create a statement to only select a single team by ID.
StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(1).withBindVariableValue("id", teamId);
// Get the team.
TeamPage page = teamService.getTeamsByStatement(statementBuilder.toStatement());
Team team = Iterables.getOnlyElement(Arrays.asList(page.getResults()));
String newDescription = team.getDescription() + " - UPDATED";
team.setDescription(newDescription);
// Update the team on the server.
Team[] teams = teamService.updateTeams(new Team[] { team });
for (Team updatedTeam : teams) {
System.out.printf("Team with ID %d and name '%s' was updated.%n", updatedTeam.getId(), updatedTeam.getName());
}
}
Aggregations