KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > remote > ServerMappedObject


1 package org.mmbase.bridge.remote;
2
3 import java.rmi.*;
4 /**
5  * MMBase bridge classes are wrapped in a bridge.remote.rmi object
6  * on creation of such an object a ref is kept in the StubToLocalMapper.
7  * this class makes it possible to make a transation between the original
8  * object and the stub
9  * @author Kees Jongenburger <keesj@dds.nl>
10  **/

11 public interface ServerMappedObject extends Remote{
12     /**
13      * @return a value that when fed to the StubToLocalMapper returns the origirnal object
14      **/

15     public String JavaDoc getMapperCode() throws RemoteException;
16 }
17
18
Popular Tags