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

guru.bitman.fictionalvieira.server.Command Maven / Gradle / Ivy

Go to download

The idea behind Fictional Vieira is to combine Bash and Java strengths to ease glue logic maintenance usually created using a mix of Bash and CLI programs

The newest version!
package guru.bitman.fictionalvieira.server;

import java.io.Writer;

/***
 * Command interface
 */
public interface Command {
	/***
	 * Execute command
	 * @param out : writer
	 */
	void execute(Writer out);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy