Interface Tie

  • All Superinterfaces:
    Handler, Tie
    All Known Implementing Classes:
    TieBase

    public interface Tie
    extends Tie
    Tie interface supports delegation mechanism for the implementation of RPC-based service. In the delegation approach, an implementation class implements the methods defined in the Remote interface. Tie instance delegates the incoming RPC call to the target implementation object.
    Author:
    JAX-RPC Development Team
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void destroy()
      Signals the Tie that it's about to be disposed of, giving it a chance to release any resources it might hold.
      Remote getTarget()
      Gets the target service implementation object (that implements java.rmi.Remote interface) for this Tie instance.
      • Methods inherited from interface com.sun.xml.rpc.spi.runtime.Handler

        handle
      • Methods inherited from interface com.sun.xml.rpc.spi.runtime.Tie

        setTarget
    • Method Detail

      • destroy

        void destroy()
        Signals the Tie that it's about to be disposed of, giving it a chance to release any resources it might hold.
      • getTarget

        Remote getTarget()
        Gets the target service implementation object (that implements java.rmi.Remote interface) for this Tie instance.