]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/java/org/opensrf/util/OSRFSerializable.java
implemented enough of the stack/session logic to make stateless requests and receive...
[OpenSRF.git] / src / java / org / opensrf / util / OSRFSerializable.java
1 package org.opensrf.util;
2
3 /**
4  * All network-serializable OpenSRF object must implement this interface.
5  */
6 public interface OSRFSerializable {
7
8     /**
9      * Returns the object registry object for the implementing class.
10      */
11     public abstract OSRFRegistry getRegistry();
12
13     public abstract Object get(String field);
14 }
15
16