Uses of Interface
org.glassfish.jersey.internal.PropertiesDelegate

Packages that use PropertiesDelegate
org.glassfish.jersey.client Jersey client-side classes. 
org.glassfish.jersey.internal Common Jersey internal API classes. 
org.glassfish.jersey.message Common Jersey messaging classes. 
org.glassfish.jersey.message.internal Common Jersey internal messaging classes. 
org.glassfish.jersey.server Jersey server-side classes. 
 

Uses of PropertiesDelegate in org.glassfish.jersey.client
 

Constructors in org.glassfish.jersey.client with parameters of type PropertiesDelegate
ChunkedInput(Type chunkType, InputStream inputStream, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, MessageBodyWorkers messageBodyWorkers, PropertiesDelegate propertiesDelegate)
          Package-private constructor used by the ChunkedInputReader.
ClientRequest(URI requestUri, ClientConfig clientConfig, PropertiesDelegate propertiesDelegate)
          Create new Jersey client request context.
 

Uses of PropertiesDelegate in org.glassfish.jersey.internal
 

Classes in org.glassfish.jersey.internal that implement PropertiesDelegate
 class MapPropertiesDelegate
          Properties delegate backed by a Map.
 

Constructors in org.glassfish.jersey.internal with parameters of type PropertiesDelegate
MapPropertiesDelegate(PropertiesDelegate that)
          Initialize new map-based properties delegate from another delegate.
 

Uses of PropertiesDelegate in org.glassfish.jersey.message
 

Methods in org.glassfish.jersey.message with parameters of type PropertiesDelegate
<T> MessageBodyReader<T>
MessageBodyWorkers.getMessageBodyReader(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, PropertiesDelegate propertiesDelegate)
          Get a message body reader that matches a set of criteria.
<T> MessageBodyWriter<T>
MessageBodyWorkers.getMessageBodyWriter(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, PropertiesDelegate propertiesDelegate)
          Get a message body writer that matches a set of criteria.
 Object MessageBodyWorkers.readFrom(Class<?> rawType, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, PropertiesDelegate propertiesDelegate, InputStream entityStream, Iterable<ReaderInterceptor> readerInterceptors, boolean translateNce)
          Reads a type from the entityStream using interceptors.
 OutputStream MessageBodyWorkers.writeTo(Object entity, Class<?> rawType, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, PropertiesDelegate propertiesDelegate, OutputStream entityStream, Iterable<WriterInterceptor> writerInterceptors)
          Writers a type to the entityStream using interceptors.
 

Uses of PropertiesDelegate in org.glassfish.jersey.message.internal
 

Classes in org.glassfish.jersey.message.internal that implement PropertiesDelegate
 class ReaderInterceptorExecutor
          Represents reader interceptor chain executor for both client and server side.
 class TracingAwarePropertiesDelegate
          Delegating properties delegate backed by another PropertiesDelegate with implemented "cache" or direct reference to tracing support related classes (e.g.
 class WriterInterceptorExecutor
          Represents writer interceptor chain executor for both client and server side.
 

Methods in org.glassfish.jersey.message.internal with parameters of type PropertiesDelegate
static TracingLogger TracingLogger.getInstance(PropertiesDelegate propertiesDelegate)
          Returns instance of TracingLogger associated with current request processing (propertiesDelegate).
<T> MessageBodyReader<T>
MessageBodyFactory.getMessageBodyReader(Class<T> c, Type t, Annotation[] as, MediaType mediaType, PropertiesDelegate propertiesDelegate)
           
<T> MessageBodyWriter<T>
MessageBodyFactory.getMessageBodyWriter(Class<T> c, Type t, Annotation[] as, MediaType mediaType, PropertiesDelegate propertiesDelegate)
           
<T> T
InboundMessageContext.readEntity(Class<T> rawType, Annotation[] annotations, PropertiesDelegate propertiesDelegate)
          Read entity from a context entity input stream.
<T> T
InboundMessageContext.readEntity(Class<T> rawType, PropertiesDelegate propertiesDelegate)
          Read entity from a context entity input stream.
<T> T
InboundMessageContext.readEntity(Class<T> rawType, Type type, Annotation[] annotations, PropertiesDelegate propertiesDelegate)
          Read entity from a context entity input stream.
<T> T
InboundMessageContext.readEntity(Class<T> rawType, Type type, PropertiesDelegate propertiesDelegate)
          Read entity from a context entity input stream.
 Object MessageBodyFactory.readFrom(Class<?> rawType, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, PropertiesDelegate propertiesDelegate, InputStream entityStream, Iterable<ReaderInterceptor> readerInterceptors, boolean translateNce)
           
 OutputStream MessageBodyFactory.writeTo(Object t, Class<?> rawType, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, PropertiesDelegate propertiesDelegate, OutputStream entityStream, Iterable<WriterInterceptor> writerInterceptors)
           
 

Constructors in org.glassfish.jersey.message.internal with parameters of type PropertiesDelegate
ReaderInterceptorExecutor(Class<?> rawType, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, PropertiesDelegate propertiesDelegate, InputStream inputStream, MessageBodyWorkers workers, Iterable<ReaderInterceptor> readerInterceptors, boolean translateNce)
          Constructs a new executor to read given type from provided entityStream.
TracingAwarePropertiesDelegate(PropertiesDelegate propertiesDelegate)
          Create new tracing aware properties delegate wrapper.
WriterInterceptorExecutor(Object entity, Class<?> rawType, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, PropertiesDelegate propertiesDelegate, OutputStream entityStream, MessageBodyWorkers workers, Iterable<WriterInterceptor> writerInterceptors)
          Constructs a new executor to write given type to provided entityStream.
 

Uses of PropertiesDelegate in org.glassfish.jersey.server
 

Classes in org.glassfish.jersey.server that implement PropertiesDelegate
 class ContainerRequest
          Jersey container request context.
 

Methods in org.glassfish.jersey.server that return PropertiesDelegate
 PropertiesDelegate ContainerRequest.getPropertiesDelegate()
          Get the underlying properties delegate.
 

Constructors in org.glassfish.jersey.server with parameters of type PropertiesDelegate
ContainerRequest(URI baseUri, URI requestUri, String httpMethod, SecurityContext securityContext, PropertiesDelegate propertiesDelegate)
          Create new Jersey container request context.
 



Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.