|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Passed to each ORBInitializer
, allowing it to
to register interceptors and perform other duties while the ORB is
initializing.
The ORBInitInfo
object is only valid during
ORB.init
. If a service keeps a reference to its
ORBInitInfo
object and tries to use it after
ORB.init
returns, the object no longer exists and an
OBJECT_NOT_EXIST
exception shall be thrown.
ORBInitializer
Method Summary | |
void |
add_client_request_interceptor(ClientRequestInterceptor interceptor)
Used to add a client-side request Interceptor to the list of client-side request Interceptors. |
void |
add_ior_interceptor(IORInterceptor interceptor)
Used to add an IOR Interceptor to the list of IOR Interceptors. |
void |
add_server_request_interceptor(ServerRequestInterceptor interceptor)
Used to add a server-side request Interceptor to the list of server-side request Interceptors. |
int |
allocate_slot_id()
Called to allocate a slot on PortableInterceptor.Current . |
String[] |
arguments()
Returns the arguments passed to ORB.init . |
CodecFactory |
codec_factory()
Returns the IOP.CodecFactory . |
String |
orb_id()
Returns the ID of the ORB being initialized. |
void |
register_initial_reference(String id,
Object obj)
Identical to ORB.register_initial_reference . |
void |
register_policy_factory(int type,
PolicyFactory policy_factory)
Registers a PolicyFactory for the given
PolicyType . |
Object |
resolve_initial_references(String id)
Identical to ORB.resolve_initial_references . |
Method Detail |
public String[] arguments()
ORB.init
. They may or
may not contain the ORB's arguments.
public String orb_id()
public CodecFactory codec_factory()
IOP.CodecFactory
. The
CodecFactory
is normally obtained via a call to
ORB.resolve_initial_references( "CodecFactory" )
, but
since the ORB is not yet available and Interceptors, particularly when
processing service contexts, will require a Codec
, a
means of obtaining a Codec
is necessary during ORB
initialization.
public void register_initial_reference(String id, Object obj) throws InvalidName
ORB.register_initial_reference
. This same
functionality exists here because the ORB, not yet fully initialized,
is not yet available but initial references may need to be
registered as part of Interceptor registration. The only difference
is that the version of this operation on the ORB uses PIDL
(CORBA.ORB.ObjectId
) and
(CORBA.ORB.InvalidName
) whereas the version in this
interface uses IDL defined in this interface; the semantics are
identical.
InvalidName
public Object resolve_initial_references(String id) throws InvalidName
ORB.resolve_initial_references
. This same
functionality exists here because the ORB, not yet fully initialized,
is not yet available but initial references may be required from the
ORB as part of Interceptor registration. The only difference is that
the version of this operation on the ORB uses PIDL
(CORBA::ORB::ObjectId
and
CORBA::ORB::InvalidName
) whereas the version in this
interface uses IDL defined in this interface; the semantics
are identical.
This operation is only valid during post_init.
InvalidName
public void add_client_request_interceptor(ClientRequestInterceptor interceptor) throws DuplicateName
interceptor
- The ClientRequestInterceptor
to be
added.
DuplicateName
- thrown if a client-side request Interceptor
has already been registered with this Interceptor's name.public void add_server_request_interceptor(ServerRequestInterceptor interceptor) throws DuplicateName
interceptor
- The ServerRequestInterceptor to be added.
DuplicateName
- thrown if a server-side request Interceptor
has already been registered with this Interceptor's namepublic void add_ior_interceptor(IORInterceptor interceptor) throws DuplicateName
interceptor
- The IORInterceptor to be added.
DuplicateName
- thrown if an IOR Interceptor has already
been registered with this Interceptor's name.public int allocate_slot_id()
PortableInterceptor.Current
.
Note that while slot id's can be allocated within an ORB initializer, the slots themselves cannot be initialized.
BAD_INV_ORDER
- thrown, with a standard minor code of 14, if
set_slot
or get_slot
is called on the
PICurrent
within an ORB initializer.Current
public void register_policy_factory(int type, PolicyFactory policy_factory)
PolicyFactory
for the given
PolicyType
.
type
- The policy type that the given PolicyFactory
serves.policy_factory
- The factory for the given policy type.
BAD_INV_ORDER
- thrown, with a standard minor code of 16, if
a PolicyFactory
already exists for the given
PolicyType
.
|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.