while(entryIterator.hasNext()) {
Versioned<Slop> versionedSlop = entryIterator.next();
Slop slop = versionedSlop.getValue();
// Build the message
RequestType requestType = null;
if(slop.getOperation().equals(Operation.PUT)) {
requestType = RequestType.PUT;
} else if(slop.getOperation().equals(Operation.DELETE)) {
requestType = RequestType.DELETE;
} else {