org.jboss.galleon.cli.cmd.state.StateRemoveUniverseCommand Maven / Gradle / Ivy
/*
* Copyright 2016-2019 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.galleon.cli.cmd.state;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.aesh.command.CommandDefinition;
import org.aesh.command.option.Option;
import org.jboss.galleon.ProvisioningException;
import org.jboss.galleon.cli.AbstractCompleter;
import org.jboss.galleon.cli.CommandExecutionException;
import org.jboss.galleon.cli.HelpDescriptions;
import org.jboss.galleon.cli.PmCommandInvocation;
import org.jboss.galleon.cli.PmCompleterInvocation;
import org.jboss.galleon.cli.PmSessionCommand;
import org.jboss.galleon.cli.cmd.CliErrors;
import org.jboss.galleon.cli.cmd.CommandDomain;
/**
*
* @author [email protected]
*/
@CommandDefinition(name = "remove-universe", description = HelpDescriptions.REMOVE_UNIVERSE)
public class StateRemoveUniverseCommand extends PmSessionCommand {
public static class UniverseCompleter extends AbstractCompleter {
@Override
protected List getItems(PmCompleterInvocation completerInvocation) {
List names = new ArrayList<>();
names.addAll(completerInvocation.getPmSession().getUniverse().getUniverseNames(null));
return names;
}
}
@Option(completer = UniverseCompleter.class, required = false, description = HelpDescriptions.UNIVERSE_NAME)
protected String name;
@Override
protected void runCommand(PmCommandInvocation commandInvocation) throws CommandExecutionException {
try {
commandInvocation.getPmSession().getUniverse().removeUniverse(name);
} catch (IOException | ProvisioningException ex) {
throw new CommandExecutionException(commandInvocation.getPmSession(), CliErrors.removeUniverseFailed(), ex);
}
}
@Override
public CommandDomain getDomain() {
return CommandDomain.EDITING;
}
}