99100101102103104105
} @Override public BatchUpdateResult<CompoundKey, V> batchUpdate(final BatchUpdateRequest<CompoundKey, V> entities) { throw new RoutingException("'batch_update' not implemented", 400); }
105106107108109110111
} @Override public BatchUpdateResult<CompoundKey, V> batchUpdate(final BatchPatchRequest<CompoundKey, V> patches) { throw new RoutingException("'batch_partial_update' not implemented", 400); }
111112113114115116117
} @Override public BatchCreateResult<CompoundKey, V> batchCreate(final BatchCreateRequest<CompoundKey, V> entities) { throw new RoutingException("'batch_create' not implemented", 400); }
117118119120121122123
} @Override public BatchUpdateResult<CompoundKey, V> batchDelete(final BatchDeleteRequest<CompoundKey, V> ids) { throw new RoutingException("'batch_delete' not implemented", 400); }
4445464748495051
ResourceContextHolder implements ComplexKeyResourceAsync<K, P, V> { @Override public void get(final ComplexResourceKey<K, P> key, final Callback<V> callback) { throw new RoutingException("'get' not implemented", 400); }
51525354555657
} @Override public void create(final V entity, final Callback<CreateResponse> callback) { throw new RoutingException("'create' not implemented", 400); }
57585960616263
} @Override public void batchGet(final Set<ComplexResourceKey<K, P>> ids, final Callback<Map<ComplexResourceKey<K, P>, V>> callback) { throw new RoutingException("'batch_get' not implemented", 400); }
64656667686970
@Override public void batchCreate(BatchCreateRequest<ComplexResourceKey<K, P>, V> entities, Callback<BatchCreateResult<ComplexResourceKey<K, P>, V>> callback) { throw new RoutingException("'batch_create' not implemented", 400); }
71727374757677
@Override public void batchUpdate(BatchUpdateRequest<ComplexResourceKey<K, P>, V> entities, Callback<BatchUpdateResult<ComplexResourceKey<K, P>, V>> callback) { throw new RoutingException("'batch_update' not implemented", 400); }
78798081828384
@Override public void batchUpdate(BatchPatchRequest<ComplexResourceKey<K, P>, V> entities, Callback<BatchUpdateResult<ComplexResourceKey<K, P>, V>> callback) { throw new RoutingException("'batch_patch' not implemented", 400); }