1 /* 2 * Replica is published under the terms 3 * of the Apache Software License. 4 */ 5 package replica.command; 6 7 /*** 8 * Process the received server commands. 9 * 10 * @author Pedro Costa 11 * @author Helder Silva 12 * @since 17/Jan/2004 13 */ 14 public interface CommandProcessor { 15 16 /*** 17 * @param command 18 */ 19 Object process(Object command); 20 }

This page was automatically generated by Maven