org.omg.PortableInterceptor
Interface ORBInitializerOperations

All Known Subinterfaces:
ORBInitializer

public interface ORBInitializerOperations

Defines operations, applicable to the ORBInitializer. These operations are invoked on initializer from the ORB.init.

See Also:
ORBInitializer

Method Summary
 void post_init(ORBInitInfo info)
          This method called during the subsequent step of initialization.
 void pre_init(ORBInitInfo info)
          This method is called during the first step of initialization.
 

Method Detail

pre_init

void pre_init(ORBInitInfo info)
This method is called during the first step of initialization. It must register all initial references that are expected to be used by other interceptors.

Parameters:
info - the object describing ORB being created and containing methods to register the interceptor.
See Also:
ORBInitInfoOperations.register_initial_reference(java.lang.String, org.omg.CORBA.Object)

post_init

void post_init(ORBInitInfo info)
This method called during the subsequent step of initialization. In this method it can be assumed that all required initial references are already registered.

Parameters:
info - the object describing ORB being created and containing methods to register the interceptor.
See Also:
ORBInitInfoOperations.register_initial_reference(java.lang.String, org.omg.CORBA.Object)