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

ca.carleton.gcrc.couch.command.Command Maven / Gradle / Ivy

There is a newer version: 2.2.7
Show newest version
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