myService.batch(new URL("https://www.google.com/m8/feeds/profiles/domain/"
+ this.domain + "/full/batch?xoauth_requestor_id=" + this.adminEmail), requestFeed);
// Check the status of each operation.
for (ContactEntry entry : responseFeed.getEntries()) {
BatchStatus batchStatus = BatchUtils.getBatchStatus(entry);
if (batchStatus.getCode() == 200) {
result.setSuccess(result.getSuccess() + 1);
} else {
result.setError(result.getError() + 1);
result.addErrorEntry(entry);
}