1 /* 2 * Replica is published under the terms 3 * of the Apache Software License. 4 */ 5 package replica.command; 6 7 8 public class MockCommand implements Command{ 9 String prop1; 10 int prop2; 11 public MockCommand(){ super(); } 12 public String getProp1(){ return prop1; } 13 public void setProp1( String value ){ prop1 = value; } 14 public int getProp2(){ return prop2; } 15 public void setProp2( int value ){ prop2 = value; } 16 public Object execute( Object arg ){ return arg; } 17 }

This page was automatically generated by Maven