|
BEA Systems, Inc. | |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectweblogic.rmi.extensions.PortableRemoteObject
API for managing references required by higher-level
functionality. In particular we need to be able to narrow to IDL
interfaces and create initial references. These functions mirror
those in PortableRemoteObject
but guarantee that
the WebLogic versions will be called since users can replace
the implementation of PortableRemoteObject
themselves.
Constructor Summary | |
PortableRemoteObject()
|
Method Summary | |
static void |
exportObject(Remote obj)
Makes a server object ready to receive remote calls. |
static Object |
narrow(Object narrowFrom,
Class narrowTo)
Checks to ensure that an object of a remote or abstract interface type can be cast to a desired type. |
static Remote |
toStub(Remote obj)
Returns a stub for the given server object. |
static void |
unexportObject(Remote obj)
Deregisters a server object from the runtime, allowing the object to become available for garbage collection. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public PortableRemoteObject()
Method Detail |
public static void exportObject(Remote obj) throws RemoteException
obj
- the server object to export.
RemoteException
- if export fails.public static Object narrow(Object narrowFrom, Class narrowTo) throws ClassCastException
narrowFrom
- the object to check.narrowTo
- the desired type.
ClassCastException
- if narrowFrom cannot be cast to narrowTo.public static Remote toStub(Remote obj) throws NoSuchObjectException
obj
- the server object for which a stub is required. Must either be a subclass
of PortableRemoteObject or have been previously the target of a call to
exportObject(java.rmi.Remote)
.
NoSuchObjectException
- if a stub cannot be located for the given server object.public static void unexportObject(Remote obj) throws NoSuchObjectException
obj
- the object to unexport.
NoSuchObjectException
- if the remote object is not
currently exported.
|
Documentation is available at http://download.oracle.com/docs/cd/E13222_01/wls/docs91 Copyright 2005 BEA Systems Inc. |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |