nyla.solutions.commas.Command Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.commas Show documentation
Show all versions of nyla.solutions.commas Show documentation
Command pattern implementation for building services.
The newest version!
package nyla.solutions.commas;
/**
* This is an abstract interface to execute an command operation.
* @author Gregory Green
*
*/
public interface Command
{
/**
* Implemented command interface to execute an operation on a argument and possibility return values
* @param input the input object
* @return the altered result
*/
ReturnType execute(InputType input);
}