// Get AdWordsUser from "~/adwords.properties".
AdWordsUser user = new AdWordsUser();
// Get the ConstantDataService.
ConstantDataServiceInterface constantDataService =
user.getService(AdWordsService.V201309.CONSTANT_DATA_SERVICE);
// Get all carriers.
Carrier[] carriers = constantDataService.getCarrierCriterion();
// Display results.
for (Carrier carrier : carriers) {
System.out.printf("Carrier with name '%s', ID '%d', and country code '%s' was found.\n",
carrier.getName(), carrier.getId(), carrier.getCountryCode());