Uses of Interface
org.glassfish.jersey.internal.PropertiesDelegate
Packages that use PropertiesDelegate
Package
Description
Common Jersey internal API classes.
Common Jersey messaging classes.
Common Jersey internal messaging classes.
-
Uses of PropertiesDelegate in org.glassfish.jersey.internal
Classes in org.glassfish.jersey.internal that implement PropertiesDelegateModifier and TypeClassDescriptionfinal classProperties delegate backed by aMap.Methods in org.glassfish.jersey.internal with parameters of type PropertiesDelegateModifier and TypeMethodDescriptionstatic PropertiesResolverPropertiesResolver.create(Configuration configuration, PropertiesDelegate delegate) Return new instance ofPropertiesResolver.Constructors in org.glassfish.jersey.internal with parameters of type PropertiesDelegateModifierConstructorDescriptionInitialize 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 PropertiesDelegateModifier and TypeMethodDescription<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.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 theentityStreamusing interceptors.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 theentityStreamusing interceptors. -
Uses of PropertiesDelegate in org.glassfish.jersey.message.internal
Classes in org.glassfish.jersey.message.internal that implement PropertiesDelegateModifier and TypeClassDescriptionfinal classRepresents reader interceptor chain executor for both client and server side.final classDelegating properties delegate backed by anotherPropertiesDelegatewith implemented "cache" or direct reference to tracing support related classes (e.g.final classRepresents writer interceptor chain executor for both client and server side.Methods in org.glassfish.jersey.message.internal with parameters of type PropertiesDelegateModifier and TypeMethodDescriptionstatic TracingLoggerTracingLogger.getInstance(PropertiesDelegate propertiesDelegate) Returns instance ofTracingLoggerassociated 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> TInboundMessageContext.readEntity(Class<T> rawType, Annotation[] annotations, PropertiesDelegate propertiesDelegate) Read entity from a context entity input stream.<T> TInboundMessageContext.readEntity(Class<T> rawType, Type type, Annotation[] annotations, PropertiesDelegate propertiesDelegate) Read entity from a context entity input stream.<T> TInboundMessageContext.readEntity(Class<T> rawType, Type type, PropertiesDelegate propertiesDelegate) Read entity from a context entity input stream.<T> TInboundMessageContext.readEntity(Class<T> rawType, PropertiesDelegate propertiesDelegate) Read entity from a context entity input stream.MessageBodyFactory.readFrom(Class<?> rawType, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> httpHeaders, PropertiesDelegate propertiesDelegate, InputStream entityStream, Iterable<ReaderInterceptor> readerInterceptors, boolean translateNce) 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 PropertiesDelegateModifierConstructorDescriptionTracingAwarePropertiesDelegate(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, InjectionManager injectionManager) Constructs a new executor to write given type to providedentityStream.