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

org.infinispan.cli.commands.Cd Maven / Gradle / Ivy

package org.infinispan.cli.commands;

import org.aesh.command.Command;
import org.aesh.command.CommandDefinition;
import org.aesh.command.CommandException;
import org.aesh.command.CommandResult;
import org.aesh.command.option.Argument;
import org.aesh.command.option.Option;
import org.infinispan.cli.activators.ConnectionActivator;
import org.infinispan.cli.completers.CdContextCompleter;
import org.infinispan.cli.impl.ContextAwareCommandInvocation;
import org.kohsuke.MetaInfServices;

/**
 * @author Tristan Tarrant <[email protected]>
 * @since 10.0
 **/
@MetaInfServices(Command.class)
@CommandDefinition(name = "cd", description = "Selects a subsystem or item", activator = ConnectionActivator.class)
public class Cd extends CliCommand {

   @Argument(description = "The name of the subsystem/item", completer = CdContextCompleter.class, required = true)
   String path;

   @Option(shortName = 'h', hasValue = false, overrideRequired = true)
   protected boolean help;

   @Override
   public boolean isHelp() {
      return help;
   }

   @Override
   public CommandResult exec(ContextAwareCommandInvocation invocation) throws CommandException {
      return invocation.getContext().changeResource(null, null, path);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy