}
private BatchUpdateResult<Object, RecordTemplatePlaceholder> createBatchUpdateResult(Object id1, Object id2)
{
Map<Object, UpdateResponse> buResponseData = new HashMap<Object, UpdateResponse>();
buResponseData.put(id1, new UpdateResponse(HttpStatus.S_200_OK));
buResponseData.put(id2, new UpdateResponse(HttpStatus.S_200_OK));
return new BatchUpdateResult<Object, RecordTemplatePlaceholder>(buResponseData);
}