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

Packages that use PropertiesDelegate
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. 
 

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> javax.ws.rs.ext.MessageBodyReader<T>
MessageBodyWorkers.getMessageBodyReader(Class<T> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, PropertiesDelegate propertiesDelegate)
          Get a message body reader that matches a set of criteria.
<T> javax.ws.rs.ext.MessageBodyWriter<T>
MessageBodyWorkers.getMessageBodyWriter(Class<T> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, PropertiesDelegate propertiesDelegate)
          Get a message body writer that matches a set of criteria.
 Object MessageBodyWorkers.readFrom(Class<?> rawType, Type type, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,String> httpHeaders, PropertiesDelegate propertiesDelegate, InputStream entityStream, Iterable<javax.ws.rs.ext.ReaderInterceptor> readerInterceptors, boolean translateNce)
          Reads a type from the entityStream using interceptors.
 OutputStream MessageBodyWorkers.writeTo(Object entity, Class<?> rawType, Type type, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, PropertiesDelegate propertiesDelegate, OutputStream entityStream, Iterable<javax.ws.rs.ext.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> javax.ws.rs.ext.MessageBodyReader<T>
MessageBodyFactory.getMessageBodyReader(Class<T> c, Type t, Annotation[] as, javax.ws.rs.core.MediaType mediaType, PropertiesDelegate propertiesDelegate)
           
<T> javax.ws.rs.ext.MessageBodyWriter<T>
MessageBodyFactory.getMessageBodyWriter(Class<T> c, Type t, Annotation[] as, javax.ws.rs.core.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, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,String> httpHeaders, PropertiesDelegate propertiesDelegate, InputStream entityStream, Iterable<javax.ws.rs.ext.ReaderInterceptor> readerInterceptors, boolean translateNce)
           
 OutputStream MessageBodyFactory.writeTo(Object t, Class<?> rawType, Type type, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, PropertiesDelegate propertiesDelegate, OutputStream entityStream, Iterable<javax.ws.rs.ext.WriterInterceptor> writerInterceptors)
           
 

Constructors in org.glassfish.jersey.message.internal with parameters of type PropertiesDelegate
ReaderInterceptorExecutor(Class<?> rawType, Type type, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,String> headers, PropertiesDelegate propertiesDelegate, InputStream inputStream, MessageBodyWorkers workers, Iterable<javax.ws.rs.ext.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, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> headers, PropertiesDelegate propertiesDelegate, OutputStream entityStream, MessageBodyWorkers workers, Iterable<javax.ws.rs.ext.WriterInterceptor> writerInterceptors)
          Constructs a new executor to write given type to provided entityStream.
 



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