BatchUtils.setBatchOperationType(entry, batchOperationType);
batchRequest.getEntries().add(entry);
}
// Get the batch link URL and send the batch request there.
Link batchLink = batchFeed.getLink(Link.Rel.FEED_BATCH, Link.Type.ATOM);
CalendarEventFeed batchResponse = service.batch(new URL(batchLink.getHref()), batchRequest);
// Ensure that all the operations were successful.
boolean isSuccess = true;
for (CalendarEventEntry entry : batchResponse.getEntries()) {
String batchId = BatchUtils.getBatchId(entry);