
org.ssoup.denv.cli.command.env.CommandClone Maven / Gradle / Ivy
The newest version!
package org.ssoup.denv.cli.command.env;
import com.beust.jcommander.Parameters;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.config.ConfigurableBeanFactory;
import org.springframework.context.annotation.Scope;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Service;
import org.ssoup.denv.cli.DenvConsole;
import org.ssoup.denv.cli.command.DenvCommand;
import org.ssoup.denv.client.DenvClient;
/**
* User: ALB
* Date: 14/09/14 17:07
*/
@Service @Order(16)
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
@Parameters(commandNames = "clone", separators = "=", commandDescription = "Clone an environment")
public class CommandClone implements DenvCommand {
private DenvConsole console;
private DenvClient denvClient;
@Autowired
public CommandClone(DenvConsole console, DenvClient denvClient) {
this.console = console;
this.denvClient = denvClient;
}
@Override
public void execute() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy