1 /* 2 * Replica is published under the terms 3 * of the Apache Software License. 4 */ 5 package replica.command; 6 7 /*** 8 * General Command interface. All aplication commands must implement this Interface. 9 * 10 * A command is like an action class. Each instruction received on the server will map into one os this 11 * command classes. 12 * 13 * A implimentation of the CommandProcessor classe will make that mapping. 14 * 15 * @author Pedro Costa 16 * @author Helder Silva 17 * @since 17/Jan/2004 18 */ 19 public interface Command { 20 21 Object execute(Object arg); 22 23 }

This page was automatically generated by Maven