1 package org.apache.ojb.odmg.shared;2 3 import java.io.Serializable ;4 5 /**6 * @author <a HREF="mailto:user@domain.com">John Doe</a>7 * The interface to allow TestClassBProxy to work8 * as a dynamic proxy9 * 10 */11 12 public interface TestClassBProxyI extends Serializable 13 {14 15 /**16 * Gets the value1.17 * @return returns value118 */19 String getValue1();20 }21