ca.carleton.gcrc.couch.command.Command Maven / Gradle / Ivy
package ca.carleton.gcrc.couch.command;
import java.io.PrintStream;
public interface Command {
boolean requiresAtlasDir();
String getCommandString();
boolean matchesKeyword(String keyword);
boolean isDeprecated();
String[] getExpectedOptions();
void reportHelp(PrintStream ps);
void runCommand(
GlobalSettings gs
,Options options
) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy