42434445464748
} @Override public Task<UpdateResponse> update(V entity) { throw new RoutingException("'update' not implemented", 400); }
48495051525354
} @Override public Task<UpdateResponse> update(PatchRequest<V> patch) { throw new RoutingException("'partial_update' not implemented", 400); }
54555657585960
} @Override public Task<UpdateResponse> delete() { throw new RoutingException("'delete' not implemented", 400); }
4344454647484950
ResourceContextHolder implements CollectionResourceAsync<K, V> { @Override public void get(final K key, final Callback<V> callback) { throw new RoutingException("'get' not implemented", 400); }
50515253545556
} @Override public void create(final V entity, final Callback<CreateResponse> callback) { throw new RoutingException("'create' not implemented", 400); }
56575859606162
} @Override public void batchGet(final Set<K> ids, final Callback<Map<K, V>> callback) { throw new RoutingException("'batch_get' not implemented", 400); }
62636465666768
} @Override public void batchUpdate(BatchUpdateRequest<K, V> entities, Callback<BatchUpdateResult<K, V>> callback) { throw new RoutingException("'batch_update' not implemented", 400); }
68697071727374
} @Override public void batchUpdate(BatchPatchRequest<K, V> patches, Callback<BatchUpdateResult<K, V>> callback) { throw new RoutingException("'batch_patch' not implemented", 400); }
74757677787980
} @Override public void batchCreate(BatchCreateRequest<K, V> entities, Callback<BatchCreateResult<K, V>> callback) { throw new RoutingException("'batch_create' not implemented", 400); }
80818283848586
} @Override public void batchDelete(BatchDeleteRequest<K, V> ids, Callback<BatchUpdateResult<K, V>> callback) { throw new RoutingException("'batch_delete' not implemented", 400); }