use of org.infinispan.client.rest.RestCacheClient in project infinispan by infinispan.
the class XSiteRestCacheOperations method createRestCacheClient.
private RestCacheClient createRestCacheClient(String siteName, String xml) {
RestCacheClient cache = SERVER_TEST.rest(siteName).get().cache(cacheName);
assertStatus(200, cache.createWithConfiguration(RestEntity.create(MediaType.APPLICATION_XML, xml)));
return cache;
}
Aggregations