javax.rmi.CORBA
Interface Tie

All Superinterfaces:
InvokeHandler

public interface Tie
extends InvokeHandler

This interface is to implement to delegate remote call to a RMI object.

Version:
$Revision: 1.2 $ $Date: 2004/02/10 21:02:52 $
Author:
Jerome Daniel

Method Summary
 void deactivate()
          This method deactivates the target object represented by Tie.
 java.rmi.Remote getTarget()
          This method must be implemented by tie classes.
 ORB orb()
          This method returns the ORB for the Tie.
 void orb(ORB orb)
          This method sets the ORB for the Tie.
 void setTarget(java.rmi.Remote target)
          This method must be implemented by tie classes.
 Object thisObject()
          This method returns an object reference for the target object represented by the Tie.
 
Methods inherited from interface org.omg.CORBA.portable.InvokeHandler
_invoke
 

Method Detail

thisObject

public Object thisObject()
This method returns an object reference for the target object represented by the Tie.


deactivate

public void deactivate()
This method deactivates the target object represented by Tie.


orb

public ORB orb()
This method returns the ORB for the Tie.


orb

public void orb(ORB orb)
This method sets the ORB for the Tie.


setTarget

public void setTarget(java.rmi.Remote target)
This method must be implemented by tie classes. It will be called by Util.registerTarget to notify the tie of its registered target implementation object.


getTarget

public java.rmi.Remote getTarget()
This method must be implemented by tie classes. It returns the registered target implementation object for the tie.