]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/java/org/opensrf/util/OSRFSerializable.java
LP1827055 Remove Python libs, install bits, and docs
[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     /**
14      * Returns the object found at the given field
15      */
16     public abstract Object get(String field);
17 }
18
19