Uses of Class
org.glassfish.jersey.server.ContainerRequest
Packages that use ContainerRequest
Package
Description
Jersey server-side classes.
Jersey server-side monitoring JMX MBeans interfaces.
Jersey server-side internal service provider contract (SPI) classes.
-
Uses of ContainerRequest in org.glassfish.jersey.server
Methods in org.glassfish.jersey.server that return ContainerRequestModifier and TypeMethodDescriptionContainerResponse.getRequestContext()Get the associated container request context paired with this response context.Methods in org.glassfish.jersey.server with parameters of type ContainerRequestModifier and TypeMethodDescriptionApplicationHandler.apply(ContainerRequest requestContext) Invokes a request and returns theresponse future.ApplicationHandler.apply(ContainerRequest request, OutputStream outputStream) Invokes a request and returns theresponse future.voidApplicationHandler.handle(ContainerRequest request) The main request/response processing entry point for Jersey container implementations.static voidTracingUtils.initTracingSupport(TracingConfig type, TracingLogger.Level appThreshold, ContainerRequest containerRequest) According to configuration/request header it initializeTracingLoggerand put it to the request properties.static voidTracingUtils.logStart(ContainerRequest request) Log tracing messages START events.voidServerRuntime.process(ContainerRequest request) Process a container request.Constructors in org.glassfish.jersey.server with parameters of type ContainerRequestModifierConstructorDescriptionContainerResponse(ContainerRequest requestContext, javax.ws.rs.core.Response response) Create a new Jersey container response context. -
Uses of ContainerRequest in org.glassfish.jersey.server.monitoring
Methods in org.glassfish.jersey.server.monitoring that return ContainerRequest -
Uses of ContainerRequest in org.glassfish.jersey.server.spi.internal
Classes in org.glassfish.jersey.server.spi.internal that implement interfaces with type arguments of type ContainerRequestModifier and TypeClassDescriptionfinal classExtendsSupplierinterface withParameter.Sourceinformation.Methods in org.glassfish.jersey.server.spi.internal that return types with arguments of type ContainerRequestModifier and TypeMethodDescriptionValueParamProvider.getValueProvider(Parameter parameter) Get an injected value provider for the parameter.Methods in org.glassfish.jersey.server.spi.internal with parameters of type ContainerRequestModifier and TypeMethodDescriptionParamValueFactoryWithSource.apply(ContainerRequest request) javax.ws.rs.core.ResponseResourceMethodDispatcher.dispatch(Object resource, ContainerRequest request) Reflectively dispatch a request to the underlyinginvocable resource methodvia the configuredinvocation handlerusing the provided resource class instance.static Object[]ParameterValueHelper.getParameterValues(List<ParamValueFactoryWithSource<?>> valueProviders, ContainerRequest request) Get the array of parameter values.Constructor parameters in org.glassfish.jersey.server.spi.internal with type arguments of type ContainerRequestModifierConstructorDescriptionParamValueFactoryWithSource(Function<ContainerRequest, T> paramFunction, Parameter.Source parameterSource) Wrap provided param supplier.