Package org.omg.PortableInterceptor
Class ORBInitInfoHelper
- java.lang.Object
-
- org.omg.PortableInterceptor.ORBInitInfoHelper
-
public abstract class ORBInitInfoHelper extends java.lang.Object
Passed to eachORBInitializer
, allowing it to to register interceptors and perform other duties while the ORB is initializing.The
ORBInitInfo
object is only valid duringORB.init
. If a service keeps a reference to itsORBInitInfo
object and tries to use it afterORB.init
returns, the object no longer exists and anOBJECT_NOT_EXIST
exception shall be thrown.- See Also:
ORBInitializer
-
-
Field Summary
Fields Modifier and Type Field Description private static TypeCode
__typeCode
private static java.lang.String
_id
-
Constructor Summary
Constructors Constructor Description ORBInitInfoHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ORBInitInfo
extract(Any a)
static java.lang.String
id()
static void
insert(Any a, ORBInitInfo that)
static ORBInitInfo
narrow(Object obj)
static ORBInitInfo
read(InputStream istream)
static TypeCode
type()
static ORBInitInfo
unchecked_narrow(Object obj)
static void
write(OutputStream ostream, ORBInitInfo value)
-
-
-
Field Detail
-
_id
private static java.lang.String _id
-
__typeCode
private static TypeCode __typeCode
-
-
Method Detail
-
insert
public static void insert(Any a, ORBInitInfo that)
-
extract
public static ORBInitInfo extract(Any a)
-
type
public static TypeCode type()
-
id
public static java.lang.String id()
-
read
public static ORBInitInfo read(InputStream istream)
-
write
public static void write(OutputStream ostream, ORBInitInfo value)
-
narrow
public static ORBInitInfo narrow(Object obj)
-
unchecked_narrow
public static ORBInitInfo unchecked_narrow(Object obj)
-
-