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

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

package org.infinispan.cli.resources;

import java.io.IOException;

import org.infinispan.cli.logging.Messages;

/**
 * @author Tristan Tarrant <[email protected]>
 * @since 10.0
 **/
public class SchemasResource extends AbstractResource {
   public static final String NAME = "schemas";

   protected SchemasResource(Resource parent) {
      super(parent, NAME);
   }

   @Override
   public Iterable getChildrenNames() throws IOException {
      return getConnection().getAvailableSchemas(getParent().getName());
   }

   @Override
   public Resource getChild(String name) {
      if (Resource.PARENT.equals(name)) {
         return parent;
      } else {
         throw Messages.MSG.noSuchResource(name);
      }
   }

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

   @Override
   public String describe() throws IOException {
      return NAME;//TODO
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy