Package org.omg.PortableInterceptor
Class RequestInfoHelper
- java.lang.Object
-
- org.omg.PortableInterceptor.RequestInfoHelper
-
public abstract class RequestInfoHelper extends java.lang.Object
Request Information, accessible to Interceptors.Each interception point is given an object through which the Interceptor can access request information. Client-side and server-side interception points are concerned with different information, so there are two information objects:
ClientRequestInfo
is passed to the client-side interception points andServerRequestInfo
is passed to the server-side interception points. But there is information that is common to both, so they both inherit from a common interface:RequestInfo
.- See Also:
ClientRequestInfo
,ServerRequestInfo
-
-
Field Summary
Fields Modifier and Type Field Description private static TypeCode
__typeCode
private static java.lang.String
_id
-
Constructor Summary
Constructors Constructor Description RequestInfoHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RequestInfo
extract(Any a)
static java.lang.String
id()
static void
insert(Any a, RequestInfo that)
static RequestInfo
narrow(Object obj)
static RequestInfo
read(InputStream istream)
static TypeCode
type()
static RequestInfo
unchecked_narrow(Object obj)
static void
write(OutputStream ostream, RequestInfo value)
-
-
-
Field Detail
-
_id
private static java.lang.String _id
-
__typeCode
private static TypeCode __typeCode
-
-
Method Detail
-
insert
public static void insert(Any a, RequestInfo that)
-
extract
public static RequestInfo extract(Any a)
-
type
public static TypeCode type()
-
id
public static java.lang.String id()
-
read
public static RequestInfo read(InputStream istream)
-
write
public static void write(OutputStream ostream, RequestInfo value)
-
narrow
public static RequestInfo narrow(Object obj)
-
unchecked_narrow
public static RequestInfo unchecked_narrow(Object obj)
-
-