Package com.sun.xml.rpc.server
Interface Tie
- All Known Implementing Classes:
TieBase
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
-
Method Details
-
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.
-