ConfigureAction action = new ConfigureAction();
return operations.enqueueOperation(action, auth, itemKey);
}
case DELETE_REQUESTED: {
DeleteAction action = new DeleteAction();
return operations.enqueueOperation(action, auth, itemKey);
}
default: {
throw new IllegalStateException("Unknown state for action: " + newState);