Package org.omg.PortableInterceptor
Class RequestInfoHelper
- java.lang.Object
-
- org.omg.PortableInterceptor.RequestInfoHelper
-
public abstract class RequestInfoHelper extends java.lang.ObjectRequest 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:
ClientRequestInfois passed to the client-side interception points andServerRequestInfois 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__typeCodeprivate 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 RequestInfoextract(Any a)static java.lang.Stringid()static voidinsert(Any a, RequestInfo that)static RequestInfonarrow(Object obj)static RequestInforead(InputStream istream)static TypeCodetype()static RequestInfounchecked_narrow(Object obj)static voidwrite(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)
-
-