01: package org.apache.ojb.odmg.shared;
02:
03: import java.io.Serializable;
04:
05: /**
06: * @author <a href="mailto:user@domain.com">John Doe</a>
07: * The interface to allow TestClassBProxy to work
08: * as a dynamic proxy
09: *
10: */
11:
12: public interface TestClassBProxyI extends Serializable {
13:
14: /**
15: * Gets the value1.
16: * @return returns value1
17: */
18: String getValue1();
19: }
|