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

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


deactivate

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


orb

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


orb

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


setTarget

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

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