All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.cli.resources.CacheKeyResource Maven / Gradle / Ivy

package org.infinispan.cli.resources;

import java.io.IOException;

/**
 * @author Tristan Tarrant <[email protected]>
 * @since 10.0
 **/
public class CacheKeyResource extends AbstractResource {
   public CacheKeyResource(CacheResource parent, String name) {
      super(parent, name);
   }

   @Override
   public boolean isLeaf() {
      return true;
   }

   @Override
   public String describe() throws IOException {
      return getConnection().describeKey(getParent().getParent().getName(), getParent().getName(), name);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy