| |
|
| java.lang.Object org.apache.geronimo.yoko.ORBConfigAdapter
ORBConfigAdapter | public class ORBConfigAdapter implements GBeanLifecycle,ConfigAdapter(Code) | | A ConfigAdapter instance for the Apache Yoko
CORBA support.
version: $Revision: 497125 $ $Date: 2007-01-17 10:51:30 -0800 (Wed, 17 Jan 2007) $ |
Method Summary | |
public ORB | createClientORB(CSSBean client) Create an ORB for a CSSBean client context.
Parameters: client - The configured CSSBean used for access. | public Object | createNameService(String host, int port) Create a transient name service instance using the
specified host name and port.
Parameters: host - The String host name. Parameters: port - The port number of the listener. | public ORB | createNameServiceClientORB(CSSBean client) Create an ORB for a CSSBean name service client context.
Parameters: client - The configured CSSBean used for access. | public ORB | createServerORB(CORBABean server) Create an ORB for a CORBABean server context.
Parameters: server - The CORBABean that owns this ORB's configuration. | public void | destroyNameService(Object ns) Destroy a name service instance created by a
prior call to createNameService(). | public void | doFail() | public void | doStart() Start the config adapter GBean. | public void | doStop() |
ORBConfigAdapter | public ORBConfigAdapter()(Code) | | |
createClientORB | public ORB createClientORB(CSSBean client) throws ConfigException(Code) | | Create an ORB for a CSSBean client context.
Parameters: client - The configured CSSBean used for access. An ORB instance configured for this client access. exception: ConfigException - |
createNameService | public Object createNameService(String host, int port) throws ConfigException(Code) | | Create a transient name service instance using the
specified host name and port.
Parameters: host - The String host name. Parameters: port - The port number of the listener. An opaque object that represents the name service. exception: ConfigException - |
createNameServiceClientORB | public ORB createNameServiceClientORB(CSSBean client) throws ConfigException(Code) | | Create an ORB for a CSSBean name service client context.
Parameters: client - The configured CSSBean used for access. An ORB instance configured for this client access. exception: ConfigException - |
createServerORB | public ORB createServerORB(CORBABean server) throws ConfigException(Code) | | Create an ORB for a CORBABean server context.
Parameters: server - The CORBABean that owns this ORB's configuration. An ORB instance configured for the CORBABean. exception: ConfigException - |
destroyNameService | public void destroyNameService(Object ns)(Code) | | Destroy a name service instance created by a
prior call to createNameService().
Parameters: ns - The opaque name service object returned from aprior call to createNameService(). |
doFail | public void doFail()(Code) | | |
doStart | public void doStart() throws Exception(Code) | | Start the config adapter GBean. This is basically
an opportunity to set any system properties
required to make the ORB hook ups. In particular,
this makes the ORB hookups for the RMI over IIOP
support.
exception: Exception - |
|
|
|