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

com.github.ncredinburgh.tomcat.command.Command Maven / Gradle / Ivy

The newest version!
package com.github.ncredinburgh.tomcat.command;

import java.io.IOException;
import java.security.GeneralSecurityException;
import java.util.Queue;

public interface Command {
	
	public String getCommandKey();
	
	public void doCommand(Options options, Queue arguments) throws UsageException, IOException, GeneralSecurityException;
	
	public String getUsage();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy