org.infinispan.cli.resources.CountersResource 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 CountersResource extends AbstractResource {
public static final String NAME = "counters";
protected CountersResource(Resource parent) {
super(parent, NAME);
}
@Override
public Iterable getChildrenNames() throws IOException {
return getConnection().getAvailableCounters(getParent().getName());
}
@Override
public Resource getChild(String name) throws IOException {
if (Resource.PARENT.equals(name)) {
return parent;
} else if (getConnection().getAvailableCounters(getParent().getName()).contains(name)) {
return new CounterResource(this, name);
} else {
throw Messages.MSG.noSuchResource(name);
}
}
}