Uses of Class
org.omg.IOP.ServiceContext
-
Packages that use ServiceContext Package Description com.sun.corba.ee.impl.interceptors org.omg.IOP org.omg.PortableInterceptor -
-
Uses of ServiceContext in com.sun.corba.ee.impl.interceptors
Fields in com.sun.corba.ee.impl.interceptors declared as ServiceContext Modifier and Type Field Description (package private) ServiceContext
ServerRequestInfoImpl.AddReplyServiceContextCommand. service_context
Fields in com.sun.corba.ee.impl.interceptors with type parameters of type ServiceContext Modifier and Type Field Description private java.util.Map<java.lang.Integer,ServiceContext>
ClientRequestInfoImpl. cachedReplyServiceContexts
private java.util.HashMap<java.lang.Integer,ServiceContext>
ServerRequestInfoImpl. cachedReplyServiceContexts
private java.util.Map<java.lang.Integer,ServiceContext>
ClientRequestInfoImpl. cachedRequestServiceContexts
private java.util.HashMap<java.lang.Integer,ServiceContext>
ServerRequestInfoImpl. cachedRequestServiceContexts
Methods in com.sun.corba.ee.impl.interceptors that return ServiceContext Modifier and Type Method Description ServiceContext
ClientRequestInfoImpl. get_reply_service_context(int id)
does not contain an etry for that ID, BAD_PARAM with a minor code of TBD_BP is raised.abstract ServiceContext
RequestInfoImpl. get_reply_service_context(int id)
Implementation for get_reply_service_context() differs for client and server implementations.ServiceContext
ServerRequestInfoImpl. get_reply_service_context(int id)
See ServerRequestInfo for javadocs.ServiceContext
ClientRequestInfoImpl. get_request_service_context(int id)
See RequestInfoImpl for javadoc.abstract ServiceContext
RequestInfoImpl. get_request_service_context(int id)
Implementation for get_request_service_context() differs for client and server implementations.ServiceContext
ServerRequestInfoImpl. get_request_service_context(int id)
See ServerRequestInfo for javadocs.protected ServiceContext
RequestInfoImpl. getServiceContext(java.util.Map<java.lang.Integer,ServiceContext> cachedServiceContexts, ServiceContexts serviceContexts, int id)
Utility method to look up a service context with the given id and convert it to an IOP.ServiceContext.Methods in com.sun.corba.ee.impl.interceptors with parameters of type ServiceContext Modifier and Type Method Description void
ServerRequestInfoImpl. add_reply_service_context(ServiceContext service_context, boolean replace)
Allows Interceptors to add service contexts to the request.void
ClientRequestInfoImpl. add_request_service_context(ServiceContext service_context, boolean replace)
Allows interceptors to add service contexts to the request.protected void
RequestInfoImpl. addServiceContext(java.util.Map<java.lang.Integer,ServiceContext> cachedServiceContexts, ServiceContexts serviceContexts, ServiceContext service_context, boolean replace)
Utility method to add an IOP.ServiceContext to a core.ServiceContexts object.Method parameters in com.sun.corba.ee.impl.interceptors with type arguments of type ServiceContext Modifier and Type Method Description protected void
RequestInfoImpl. addServiceContext(java.util.Map<java.lang.Integer,ServiceContext> cachedServiceContexts, ServiceContexts serviceContexts, ServiceContext service_context, boolean replace)
Utility method to add an IOP.ServiceContext to a core.ServiceContexts object.protected ServiceContext
RequestInfoImpl. getServiceContext(java.util.Map<java.lang.Integer,ServiceContext> cachedServiceContexts, ServiceContexts serviceContexts, int id)
Utility method to look up a service context with the given id and convert it to an IOP.ServiceContext. -
Uses of ServiceContext in org.omg.IOP
Fields in org.omg.IOP declared as ServiceContext Modifier and Type Field Description ServiceContext
ServiceContextHolder. value
ServiceContext[]
ServiceContextListHolder. value
Methods in org.omg.IOP that return ServiceContext Modifier and Type Method Description static ServiceContext
ServiceContextHelper. extract(Any a)
static ServiceContext[]
ServiceContextListHelper. extract(Any a)
static ServiceContext
ServiceContextHelper. read(InputStream istream)
static ServiceContext[]
ServiceContextListHelper. read(InputStream istream)
Methods in org.omg.IOP with parameters of type ServiceContext Modifier and Type Method Description static void
ServiceContextHelper. insert(Any a, ServiceContext that)
static void
ServiceContextListHelper. insert(Any a, ServiceContext[] that)
static void
ServiceContextHelper. write(OutputStream ostream, ServiceContext value)
static void
ServiceContextListHelper. write(OutputStream ostream, ServiceContext[] value)
Constructors in org.omg.IOP with parameters of type ServiceContext Constructor Description ServiceContextHolder(ServiceContext initialValue)
ServiceContextListHolder(ServiceContext[] initialValue)
-
Uses of ServiceContext in org.omg.PortableInterceptor
Methods in org.omg.PortableInterceptor that return ServiceContext Modifier and Type Method Description ServiceContext
RequestInfoOperations. get_reply_service_context(int id)
Returns a copy of the service context with the given ID that is associated with the reply.ServiceContext
RequestInfoOperations. get_request_service_context(int id)
Returns a copy of the service context with the given ID that is associated with the request.Methods in org.omg.PortableInterceptor with parameters of type ServiceContext Modifier and Type Method Description void
ServerRequestInfoOperations. add_reply_service_context(ServiceContext service_context, boolean replace)
Allows Interceptors to add service contexts to the request.void
ClientRequestInfoOperations. add_request_service_context(ServiceContext service_context, boolean replace)
Allows Interceptors to add service contexts to the request.
-