Uses of Interface
org.glassfish.jersey.internal.util.collection.Value
-
Packages that use Value Package Description org.glassfish.jersey.internal.util.collection Common set of Jersey collection classes.org.glassfish.jersey.server.internal.process Jersey server-side internal classes related to request and response processing.org.glassfish.jersey.servlet Jersey generic Servlet container integration classes. -
-
Uses of Value in org.glassfish.jersey.internal.util.collection
Subinterfaces of Value in org.glassfish.jersey.internal.util.collection Modifier and Type Interface Description interfaceLazyValue<T>Lazily initializedvalue.interfaceRef<T>A possibly mutable value reference.Methods in org.glassfish.jersey.internal.util.collection that return Value Modifier and Type Method Description static <T> Value<T>Values. eager(Value<T> delegate)Get a new eagerly initializedvalue provider.static <T> Value<T>Values. empty()static <T> Value<T>Values. of(T value)Get a new constantvalue providerwhoseget()method always returns the instance supplied to thevalueparameter.Methods in org.glassfish.jersey.internal.util.collection with parameters of type Value Modifier and Type Method Description static <T> Value<T>Values. eager(Value<T> delegate)Get a new eagerly initializedvalue provider.static <T> LazyValue<T>Values. lazy(Value<T> delegate)Get a new lazily initializedvalue provider. -
Uses of Value in org.glassfish.jersey.server.internal.process
Classes in org.glassfish.jersey.server.internal.process that implement Value Modifier and Type Class Description classRequestProcessingContextReferenceWrapper that holds the reference of theRequestProcessingContext.Methods in org.glassfish.jersey.server.internal.process that return Value Modifier and Type Method Description Value<AsyncContext>RequestProcessingContext. asyncContextValue()Get aValueinstance holding the asynchronous context associated with this request processing context.Methods in org.glassfish.jersey.server.internal.process with parameters of type Value Modifier and Type Method Description voidRequestProcessingContext. initAsyncContext(Value<AsyncContext> lazyContextValue)Lazily initializeAsyncContextfor this request processing context. -
Uses of Value in org.glassfish.jersey.servlet
Methods in org.glassfish.jersey.servlet that return Value Modifier and Type Method Description Value<Integer>ServletContainer. service(URI baseUri, URI requestUri, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response)Dispatch client requests to a resource class.Value<Integer>WebComponent. service(URI baseUri, URI requestUri, jakarta.servlet.http.HttpServletRequest servletRequest, jakarta.servlet.http.HttpServletResponse servletResponse)Dispatch client requests to a resource class.
-