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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
LazyValue<T>
Lazily initialized
value . |
interface |
Ref<T>
A possibly mutable value reference.
|
Modifier and Type | Method and Description |
---|---|
static <T> Value<T> |
Values.eager(Value<T> delegate)
Get a new eagerly initialized
value provider . |
static <T> Value<T> |
Values.empty()
|
static <T> Value<T> |
Values.of(T value)
Get a new constant
value provider whose get()
method always returns the instance supplied to the value parameter. |
Modifier and Type | Method and Description |
---|---|
static <T> Value<T> |
Values.eager(Value<T> delegate)
Get a new eagerly initialized
value provider . |
static <T> LazyValue<T> |
Values.lazy(Value<T> delegate)
Get a new lazily initialized
value provider . |
Modifier and Type | Class and Description |
---|---|
class |
RequestProcessingContextReference
Wrapper that holds the reference of the
RequestProcessingContext . |
Modifier and Type | Method and Description |
---|---|
Value<AsyncContext> |
RequestProcessingContext.asyncContextValue()
Get a
Value instance holding the asynchronous context associated with this request processing context. |
Modifier and Type | Method and Description |
---|---|
void |
RequestProcessingContext.initAsyncContext(Value<AsyncContext> lazyContextValue)
Lazily initialize
AsyncContext for this
request processing context. |
Modifier and Type | Method and Description |
---|---|
Value<Integer> |
ServletContainer.service(URI baseUri,
URI requestUri,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Dispatch client requests to a resource class.
|
Value<Integer> |
WebComponent.service(URI baseUri,
URI requestUri,
javax.servlet.http.HttpServletRequest servletRequest,
javax.servlet.http.HttpServletResponse servletResponse)
Dispatch client requests to a resource class.
|
Copyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.