| org.apache.geronimo.corba.util.UtilInitializer
UtilInitializer | public class UtilInitializer extends LocalObject implements ORBInitializer(Code) | | The sole purpose of this initializer is to register a non-singleton ORB
with the class Util .
version: $Revision: 451417 $ $Date: 2006-09-29 13:13:22 -0700 (Fri, 29 Sep 2006) $ See Also: Util |
Method Summary | |
public void | post_init(ORBInitInfo info) Called during ORB initialization. | public void | pre_init(ORBInitInfo info) Called during ORB initialization. |
post_init | public void post_init(ORBInitInfo info)(Code) | | Called during ORB initialization. If a service must resolve initial
references as part of its initialization, it can assume that all
initial references will be available at this point.
Calling the post_init operations is not the final
task of ORB initialization. The final task, following the
post_init calls, is attaching the lists of registered
interceptors to the ORB. Therefore, the ORB does not contain the
interceptors during calls to post_init . If an
ORB-mediated call is made from within post_init , no
request interceptors will be invoked on that call.
Likewise, if an operation is performed which causes an IOR to be
created, no IOR interceptors will be invoked.
Parameters: info - provides initialization attributes andoperations by which Interceptors can be registered. |
pre_init | public void pre_init(ORBInitInfo info)(Code) | | Called during ORB initialization. If it is expected that initial
services registered by an interceptor will be used by other
interceptors, then those initial services shall be registered at
this point via calls to
ORBInitInfo.register_initial_reference .
Parameters: info - provides initialization attributes and operations bywhich Interceptors can be registered. |
|
|