- CACHE_CONTROL - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- cacheControl(CacheControl) - Method in interface javax.ws.rs.client.Invocation.Builder
-
Set the cache control data of the message.
- CacheControl - Class in javax.ws.rs.core
-
An abstraction for the value of a HTTP Cache-Control response header.
- CacheControl() - Constructor for class javax.ws.rs.core.CacheControl
-
Create a new instance of CacheControl.
- cacheControl(CacheControl) - Method in class javax.ws.rs.core.Response.ResponseBuilder
-
Set the cache control data of the message.
- cacheControl(CacheControl) - Method in class org.glassfish.jersey.client.ClientRequest
-
Add new cache control entry to the message headers.
- cacheControl(CacheControl) - Method in class org.glassfish.jersey.client.JerseyInvocation.Builder
-
- CachingConnectorProvider - Class in org.glassfish.jersey.client.spi
-
Caching connector provider.
- CachingConnectorProvider(ConnectorProvider) - Constructor for class org.glassfish.jersey.client.spi.CachingConnectorProvider
-
Create the caching connector provider.
- cancel() - Method in interface javax.ws.rs.container.AsyncResponse
-
Cancel the suspended request processing.
- cancel(int) - Method in interface javax.ws.rs.container.AsyncResponse
-
Cancel the suspended request processing.
- cancel(Date) - Method in interface javax.ws.rs.container.AsyncResponse
-
Cancel the suspended request processing.
- CHARSET_PARAMETER - Static variable in class javax.ws.rs.core.MediaType
-
The media type charset parameter name.
- CHUNKED_ENCODING_SIZE - Static variable in class org.glassfish.jersey.client.ClientProperties
-
The value MUST be an instance convertible to
Integer.
- ChunkedInput<T> - Class in org.glassfish.jersey.client
-
Response entity type used for receiving messages in "typed" chunks.
- ChunkedInput(Type, InputStream, Annotation[], MediaType, MultivaluedMap<String, String>, MessageBodyWorkers, PropertiesDelegate) - Constructor for class org.glassfish.jersey.client.ChunkedInput
-
- ChunkedOutput<T> - Class in org.glassfish.jersey.server
-
Used for sending messages in "typed" chunks.
- ChunkedOutput() - Constructor for class org.glassfish.jersey.server.ChunkedOutput
-
Create new ChunkedOutput.
- ChunkedOutput(Type) - Constructor for class org.glassfish.jersey.server.ChunkedOutput
-
Create ChunkedOutput with specified type.
- ChunkedOutput(byte[]) - Constructor for class org.glassfish.jersey.server.ChunkedOutput
-
Create new ChunkedOutput with a custom chunk delimiter.
- ChunkedOutput(Type, byte[]) - Constructor for class org.glassfish.jersey.server.ChunkedOutput
-
Create new ChunkedOutput with a custom chunk delimiter.
- ChunkedOutput(String) - Constructor for class org.glassfish.jersey.server.ChunkedOutput
-
Create new ChunkedOutput with a custom chunk delimiter.
- ChunkedOutput(Type, String) - Constructor for class org.glassfish.jersey.server.ChunkedOutput
-
Create new ChunkedOutput with a custom chunk delimiter.
- ChunkedResponseWriter - Class in org.glassfish.jersey.server
-
- ChunkedResponseWriter() - Constructor for class org.glassfish.jersey.server.ChunkedResponseWriter
-
- ChunkParser - Interface in org.glassfish.jersey.client
-
Chunk data parser.
- chunkSize(int) - Method in class org.glassfish.jersey.client.HttpUrlConnectorProvider
-
- cleanIssueList() - Method in class org.glassfish.jersey.server.model.ComponentModelValidator
-
Removes all issues from the current issue list.
- clear() - Method in class javax.ws.rs.core.AbstractMultivaluedMap
-
- Client - Interface in javax.ws.rs.client
-
Client is the main entry point to the fluent API used to build and execute client
requests in order to consume responses returned.
- CLIENT_CERT_AUTH - Static variable in interface javax.ws.rs.core.SecurityContext
-
String identifier for Client Certificate authentication.
- ClientBinding - Annotation Type in org.glassfish.jersey.server
-
Meta-annotation that provides a facility for creating bindings between an
@Uri-injectable
WebTarget instances and clients (and their configurations) that are used to create
the injected web target instances.
- ClientBuilder - Class in javax.ws.rs.client
-
Main entry point to the client API used to bootstrap
Client
instances.
- ClientBuilder() - Constructor for class javax.ws.rs.client.ClientBuilder
-
Allows custom implementations to extend the ClientBuilder class.
- ClientConfig - Class in org.glassfish.jersey.client
-
Jersey externalized implementation of client-side JAX-RS
configurable contract.
- ClientConfig() - Constructor for class org.glassfish.jersey.client.ClientConfig
-
Construct a new Jersey configuration instance with the default features
and property values.
- ClientConfig(Class<?>...) - Constructor for class org.glassfish.jersey.client.ClientConfig
-
Construct a new Jersey configuration instance and register the provided list of provider classes.
- ClientConfig(Object...) - Constructor for class org.glassfish.jersey.client.ClientConfig
-
Construct a new Jersey configuration instance and register the provided list of provider instances.
- ClientErrorException - Exception in javax.ws.rs
-
A base runtime application exception indicating a client request error
(HTTP 4xx status codes).
- ClientErrorException(Response.Status) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(String, Response.Status) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(int) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(String, int) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(Response) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(String, Response) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(Response.Status, Throwable) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(String, Response.Status, Throwable) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(int, Throwable) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(String, int, Throwable) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(Response, Throwable) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientErrorException(String, Response, Throwable) - Constructor for exception javax.ws.rs.ClientErrorException
-
Construct a new client error exception.
- ClientLifecycleListener - Interface in org.glassfish.jersey.client
-
Jersey client lifecycle listener contract.
- ClientProperties - Class in org.glassfish.jersey.client
-
Jersey client implementation configuration properties.
- ClientRequest - Class in org.glassfish.jersey.client
-
Jersey client request context.
- ClientRequest(URI, ClientConfig, PropertiesDelegate) - Constructor for class org.glassfish.jersey.client.ClientRequest
-
Create new Jersey client request context.
- ClientRequest(ClientRequest) - Constructor for class org.glassfish.jersey.client.ClientRequest
-
Copy constructor.
- ClientRequestContext - Interface in javax.ws.rs.client
-
Client request filter context.
- ClientRequestFilter - Interface in javax.ws.rs.client
-
An extension interface implemented by client request filters.
- ClientResponse - Class in org.glassfish.jersey.client
-
Jersey client response context.
- ClientResponse(ClientRequest, Response) - Constructor for class org.glassfish.jersey.client.ClientResponse
-
Create new Jersey client response context initialized from a JAX-RS
response.
- ClientResponse(Response.StatusType, ClientRequest) - Constructor for class org.glassfish.jersey.client.ClientResponse
-
Create a new Jersey client response context.
- ClientResponse(Response.StatusType, ClientRequest, URI) - Constructor for class org.glassfish.jersey.client.ClientResponse
-
Create a new Jersey client response context.
- ClientResponseContext - Interface in javax.ws.rs.client
-
Client response filter context.
- ClientResponseFilter - Interface in javax.ws.rs.client
-
An extension interface implemented by client response filters.
- clone() - Method in class javax.ws.rs.core.Response.ResponseBuilder
- clone() - Method in class javax.ws.rs.core.UriBuilder
-
Create a copy of the UriBuilder preserving its state.
- close() - Method in interface javax.ws.rs.client.Client
-
Close client instance and all it's associated resources.
- close() - Method in class javax.ws.rs.core.Response
-
Close the underlying message entity input stream (if available and open)
as well as releases any other resources associated with the response
(e.g.
- close() - Method in class org.glassfish.jersey.client.ChunkedInput
-
- close() - Method in class org.glassfish.jersey.client.JerseyClient
-
- close() - Method in interface org.glassfish.jersey.client.spi.Connector
-
Close connector and release all it's internally associated resources.
- close() - Method in class org.glassfish.jersey.server.ChunkedOutput
-
Close this response - it will be finalized and underlying connections will be closed
or made available for another response.
- close() - Method in interface org.glassfish.jersey.server.CloseableService
-
Invokes
Closeable#close() method on all instances of
Closeable added by the
#add(Closeable)
method.
- close() - Method in class org.glassfish.jersey.server.ContainerResponse
-
Closes the response.
- close() - Method in interface org.glassfish.jersey.server.spi.ExternalRequestScope
-
Finish the actual request.
- CloseableService - Interface in org.glassfish.jersey.server
-
A closeable service to add instances of
Closeable that
are required to be closed.
- closeAll() - Method in class org.glassfish.jersey.server.Broadcaster
-
- com.sun.research.ws.wadl - package com.sun.research.ws.wadl
-
- commit() - Method in interface org.glassfish.jersey.server.spi.ContainerResponseWriter
-
Commit the response & close the container response writer.
- commitStream() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- CommonProperties - Class in org.glassfish.jersey
-
Common (server/client) Jersey configuration properties.
- COMPARATOR - Static variable in class org.glassfish.jersey.server.model.RuntimeResource
-
Comparator of RuntimeResources based on rules respecting resource matching algorithm.
- COMPARATOR - Static variable in class org.glassfish.jersey.uri.PathPattern
-
- COMPARATOR - Static variable in class org.glassfish.jersey.uri.UriTemplate
-
Order the templates according to JAX-RS specification.
- complete() - Method in interface org.glassfish.jersey.servlet.spi.AsyncContextDelegate
-
Invoked upon a response writing completion when the response write is either committed or canceled.
- completed(RESPONSE) - Method in interface javax.ws.rs.client.InvocationCallback
-
Called when the invocation was successfully completed.
- CompletionCallback - Interface in javax.ws.rs.container
-
A request processing callback that receives request processing completion events.
- ComponentModelValidator - Class in org.glassfish.jersey.server.model
-
A resource model validator that checks the given resource model.
- ComponentModelValidator(ServiceLocator) - Constructor for class org.glassfish.jersey.server.model.ComponentModelValidator
-
- ComponentProvider - Interface in org.glassfish.jersey.server.spi
-
Component provider interface to allow custom management of 3rd party
components life-cycle and dependency injection.
- Configurable<C extends Configurable> - Interface in javax.ws.rs.core
-
Represents a client or server-side configurable context in JAX-RS.
- Configuration - Interface in javax.ws.rs.core
-
A configuration state associated with a
configurable JAX-RS context.
- configure(ResourceInfo, FeatureContext) - Method in interface javax.ws.rs.container.DynamicFeature
-
- configure(FeatureContext) - Method in interface javax.ws.rs.core.Feature
-
A call-back method called when the feature is to be enabled in a given
runtime configuration scope.
- configure(FeatureContext) - Method in class org.glassfish.jersey.client.authentication.HttpAuthenticationFeature
-
- configure(FeatureContext) - Method in class org.glassfish.jersey.client.CustomProvidersFeature
-
- configure(FeatureContext) - Method in class org.glassfish.jersey.client.filter.EncodingFeature
-
- configure(ResourceInfo, FeatureContext) - Method in class org.glassfish.jersey.server.filter.RolesAllowedDynamicFeature
-
- configure() - Method in class org.glassfish.jersey.server.wadl.config.WadlGeneratorConfig
-
- configure(FeatureContext) - Method in class org.glassfish.jersey.server.wadl.WadlFeature
-
- CONNECT_TIMEOUT - Static variable in class org.glassfish.jersey.client.ClientProperties
-
Connect timeout interval, in milliseconds.
- ConnectionCallback - Interface in javax.ws.rs.container
-
Asynchronous request processing lifecycle callback that receives connection
related
asynchronous response lifecycle events.
- connectionFactory(HttpUrlConnectorProvider.ConnectionFactory) - Method in class org.glassfish.jersey.client.HttpUrlConnectorProvider
-
- Connector - Interface in org.glassfish.jersey.client.spi
-
Client transport connector extension contract.
- connectorProvider(ConnectorProvider) - Method in class org.glassfish.jersey.client.ClientConfig
-
Register a custom Jersey client connector provider.
- ConnectorProvider - Interface in org.glassfish.jersey.client.spi
-
Jersey client connector provider contract.
- ConstrainedTo - Annotation Type in javax.ws.rs
-
Indicates the run-time context in which an annotated JAX-RS provider
is applicable.
- Consumes - Annotation Type in javax.ws.rs
-
Defines the media types that the methods of a resource class or
MessageBodyReader can accept.
- consumes(String...) - Method in class org.glassfish.jersey.server.model.ResourceMethod.Builder
-
Add consumed media types supported by the component.
- consumes(MediaType...) - Method in class org.glassfish.jersey.server.model.ResourceMethod.Builder
-
Add consumed media types supported by the component.
- consumes(Collection<MediaType>) - Method in class org.glassfish.jersey.server.model.ResourceMethod.Builder
-
Add consumed media types supported by the component.
- Consuming - Interface in org.glassfish.jersey.server.model
-
Model component that is able to consume media types.
- Container - Interface in org.glassfish.jersey.server.spi
-
Jersey container service contract.
- ContainerException - Exception in org.glassfish.jersey.server
-
Exception thrown by the container components in to notify Jersey runtime about
any errors.
- ContainerException(Throwable) - Constructor for exception org.glassfish.jersey.server.ContainerException
-
- ContainerException(String, Throwable) - Constructor for exception org.glassfish.jersey.server.ContainerException
-
- ContainerException(String) - Constructor for exception org.glassfish.jersey.server.ContainerException
-
- ContainerFactory - Class in org.glassfish.jersey.server
-
Factory for creating specific HTTP-based containers.
- ContainerLifecycleListener - Interface in org.glassfish.jersey.server.spi
-
Classes implementing this contract receive container life-cycle notification
events.
- ContainerMessageBodyWorkersInitializer - Class in org.glassfish.jersey.server
-
Function that can be put to an acceptor chain to properly initialize
MessageBodyWorkers instance on a current request and response.
- ContainerMessageBodyWorkersInitializer(Provider<MessageBodyWorkers>) - Constructor for class org.glassfish.jersey.server.ContainerMessageBodyWorkersInitializer
-
- ContainerProvider - Interface in org.glassfish.jersey.server.spi
-
Service-provider interface for creating container instances.
- ContainerRequest - Class in org.glassfish.jersey.server
-
Jersey container request context.
- ContainerRequest(URI, URI, String, SecurityContext, PropertiesDelegate) - Constructor for class org.glassfish.jersey.server.ContainerRequest
-
Create new Jersey container request context.
- ContainerRequestContext - Interface in javax.ws.rs.container
-
Container request filter context.
- ContainerRequestFilter - Interface in javax.ws.rs.container
-
An extension interface implemented by container request filters.
- ContainerResponse - Class in org.glassfish.jersey.server
-
Jersey container response context.
- ContainerResponse(ContainerRequest, Response) - Constructor for class org.glassfish.jersey.server.ContainerResponse
-
Create a new Jersey container response context.
- ContainerResponseContext - Interface in javax.ws.rs.container
-
Container response filter context.
- ContainerResponseFilter - Interface in javax.ws.rs.container
-
An extension interface implemented by container response filters.
- ContainerResponseWriter - Interface in org.glassfish.jersey.server.spi
-
A suspendable, request-scoped I/O container response writer.
- ContainerResponseWriter.TimeoutHandler - Interface in org.glassfish.jersey.server.spi
-
Time-out handler can be registered when the container response writer gets
suspended.
- containsKey(Object) - Method in class javax.ws.rs.core.AbstractMultivaluedMap
-
- containsValue(Object) - Method in class javax.ws.rs.core.AbstractMultivaluedMap
-
- content - Variable in class com.sun.research.ws.wadl.Doc
-
- CONTENT_DISPOSITION - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- CONTENT_ENCODING - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- CONTENT_ID - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- CONTENT_LANGUAGE - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- CONTENT_LENGTH - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- CONTENT_LOCATION - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- CONTENT_TYPE - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- ContentEncoder - Class in org.glassfish.jersey.spi
-
Standard contract for plugging in content encoding support.
- ContentEncoder(String...) - Constructor for class org.glassfish.jersey.spi.ContentEncoder
-
Initializes this encoder implementation with the list of supported content encodings.
- contentLocation(URI) - Method in class javax.ws.rs.core.Response.ResponseBuilder
-
Set the content location.
- Context - Annotation Type in javax.ws.rs.core
-
This annotation is used to inject information into a class
field, bean property or method parameter.
- ContextResolver<T> - Interface in javax.ws.rs.ext
-
Contract for a provider that supplies context information to resource
classes and other providers.
- ContextResolvers - Interface in org.glassfish.jersey.spi
-
- contextualEncode(String, UriComponent.Type) - Static method in class org.glassfish.jersey.uri.UriComponent
-
Contextually encodes the characters of string that are either non-ASCII
characters or are ASCII characters that must be percent-encoded using the
UTF-8 encoding.
- contextualEncode(String, UriComponent.Type, boolean) - Static method in class org.glassfish.jersey.uri.UriComponent
-
Contextually encodes the characters of string that are either non-ASCII
characters or are ASCII characters that must be percent-encoded using the
UTF-8 encoding.
- Contract - Annotation Type in org.glassfish.jersey.spi
-
Used to annotate SPI provider contracts recognized by Jersey (in addition to the JAX-RS providers).
- ContractProvider - Class in org.glassfish.jersey.model
-
Jersey contract provider model.
- ContractProvider.Builder - Class in org.glassfish.jersey.model
-
Contract provider model builder.
- cookie(Cookie) - Method in interface javax.ws.rs.client.Invocation.Builder
-
Add a cookie to be set.
- cookie(String, String) - Method in interface javax.ws.rs.client.Invocation.Builder
-
Add a cookie to be set.
- Cookie - Class in javax.ws.rs.core
-
Represents the value of a HTTP cookie, transferred in a request.
- Cookie(String, String, String, String, int) - Constructor for class javax.ws.rs.core.Cookie
-
Create a new instance.
- Cookie(String, String, String, String) - Constructor for class javax.ws.rs.core.Cookie
-
Create a new instance.
- Cookie(String, String) - Constructor for class javax.ws.rs.core.Cookie
-
Create a new instance.
- COOKIE - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- cookie(NewCookie...) - Method in class javax.ws.rs.core.Response.ResponseBuilder
-
Add cookies to the response message.
- cookie(Cookie) - Method in class org.glassfish.jersey.client.ClientRequest
-
Add new cookie to the message headers.
- cookie(Cookie) - Method in class org.glassfish.jersey.client.JerseyInvocation.Builder
-
- cookie(String, String) - Method in class org.glassfish.jersey.client.JerseyInvocation.Builder
-
- CookieParam - Annotation Type in javax.ws.rs
-
Binds the value of a HTTP cookie to a resource method parameter,
resource class field, or resource class bean property.
- CookieParamException(Throwable, String, String) - Constructor for exception org.glassfish.jersey.server.ParamException.CookieParamException
-
- copy() - Method in class org.glassfish.jersey.SslConfigurator
-
Create a copy of the current SSL configurator instance.
- create(Inflector<Request, T>) - Static method in class org.glassfish.jersey.server.model.Invocable
-
Create a new resource method invocable model backed by an inflector instance.
- create(Class<? extends Inflector>) - Static method in class org.glassfish.jersey.server.model.Invocable
-
Create a new resource method invocable model backed by an inflector class.
- create(MethodHandler, Method) - Static method in class org.glassfish.jersey.server.model.Invocable
-
Create a new resource method invocable model.
- create(MethodHandler, Method, boolean) - Static method in class org.glassfish.jersey.server.model.Invocable
-
Create a new resource method invocable model.
- create(MethodHandler, Method, Method, boolean) - Static method in class org.glassfish.jersey.server.model.Invocable
-
Create a new resource method invocable model.
- create(MethodHandler, Method, Method, boolean, Type) - Static method in class org.glassfish.jersey.server.model.Invocable
-
Create a new resource method invocable model.
- create(Class<?>) - Static method in class org.glassfish.jersey.server.model.MethodHandler
-
Create a class-based method handler from a class.
- create(Class<?>, boolean) - Static method in class org.glassfish.jersey.server.model.MethodHandler
-
Create a class-based method handler from a class.
- create(Object) - Static method in class org.glassfish.jersey.server.model.MethodHandler
-
Create a instance-based (singleton) method handler from a class.
- create(Object, Class<?>) - Static method in class org.glassfish.jersey.server.model.MethodHandler
-
Create a instance-based (singleton) method handler from a class.
- create(Class, Class, boolean, Class<?>, Type, Annotation[]) - Static method in class org.glassfish.jersey.server.model.Parameter
-
Create a parameter model.
- create(Class, Class, Constructor<?>, boolean) - Static method in class org.glassfish.jersey.server.model.Parameter
-
Create a list of parameter models for a given resource method handler
injectable constructor.
- create(Class, Class, Method, boolean) - Static method in class org.glassfish.jersey.server.model.Parameter
-
Create a list of parameter models for a given Java method handling a resource
method, sub-resource method or a sub-resource locator.
- createApplication() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createApplication() - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
- createClient() - Static method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- createClient(Configuration) - Static method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- createContainer(Class<T>, Application) - Static method in class org.glassfish.jersey.server.ContainerFactory
-
Create a container according to the class requested.
- createContainer(Class<T>, Application) - Method in interface org.glassfish.jersey.server.spi.ContainerProvider
-
Create an container of a given type.
- created(URI) - Static method in class javax.ws.rs.core.Response
-
Create a new ResponseBuilder for a created resource, set the location
header using the supplied value.
- createDelegate(HttpServletRequest, HttpServletResponse) - Method in class org.glassfish.jersey.servlet.async.AsyncContextDelegateProviderImpl
-
- createDelegate(HttpServletRequest, HttpServletResponse) - Method in interface org.glassfish.jersey.servlet.spi.AsyncContextDelegateProvider
-
Factory method to create instances of Servlet container response writer extension,
AsyncContextDelegate, for response processing.
- createDoc() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
Create an instance of
Doc
- createEndpoint(Application, Class<T>) - Method in class javax.ws.rs.ext.RuntimeDelegate
-
Create a configured instance of the supplied endpoint type.
- createExternalGrammar() - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
Perform any post create functions such as generating grammars.
- createGrammars() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createHeaderDelegate(Class<T>) - Method in class javax.ws.rs.ext.RuntimeDelegate
-
- createInclude() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createLink() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
Create an instance of
Link
- createLinkBuilder() - Method in class javax.ws.rs.ext.RuntimeDelegate
-
- createMethod() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createMethod(Resource, ResourceMethod) - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
- createOption() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createParam() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
Create an instance of
Param
- createParam(Resource, ResourceMethod, Parameter) - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
- createParser(String) - Static method in class org.glassfish.jersey.client.ChunkedInput
-
Create new chunk parser that will split the response entity input stream
based on a fixed boundary string.
- createParser(byte[]) - Static method in class org.glassfish.jersey.client.ChunkedInput
-
Create new chunk parser that will split the response entity input stream
based on a fixed boundary sequence of bytes.
- createRepresentation() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createRequest() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createRequest(Resource, ResourceMethod) - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
- createRequestRepresentation(Resource, ResourceMethod, MediaType) - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
- createResource() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createResource(Resource, String) - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
- createResources() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createResources() - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
- createResourceType() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createResponse() - Method in class com.sun.research.ws.wadl.ObjectFactory
-
- createResponseBuilder() - Method in class javax.ws.rs.ext.RuntimeDelegate
-
- createResponses(Resource, ResourceMethod) - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
- createSSLContext() - Method in class org.glassfish.jersey.SslConfigurator
-
Create new SSL context instance using the current SSL context configuration.
- createURI(Map<String, String>) - Method in class org.glassfish.jersey.uri.UriTemplate
-
Create a URI by substituting any template variables
for corresponding template values.
- createURI(String...) - Method in class org.glassfish.jersey.uri.UriTemplate
-
Create a URI by substituting any template variables
for corresponding template values.
- createURI(String[], int, int) - Method in class org.glassfish.jersey.uri.UriTemplate
-
Create a URI by substituting any template variables
for corresponding template values.
- createURI(String, String, String, String, String, String, String, String, Map<String, ?>, boolean, boolean) - Static method in class org.glassfish.jersey.uri.UriTemplate
-
Construct a URI from the component parts each of which may contain
template variables.
- createURI(String, String, String, String, String, String, String, String, Object[], boolean, boolean) - Static method in class org.glassfish.jersey.uri.UriTemplate
-
Construct a URI from the component parts each of which may contain
template variables.
- createUriBuilder() - Method in class javax.ws.rs.ext.RuntimeDelegate
-
- createURIWithStringValues(String, String, String, String, String, String, String, String, Map<String, ?>, boolean, boolean) - Static method in class org.glassfish.jersey.uri.UriTemplate
-
Construct a URI from the component parts each of which may contain
template variables.
- createURIWithStringValues(String, String, String, String, String, String, String, String, String[], boolean, boolean) - Static method in class org.glassfish.jersey.uri.UriTemplate
-
Construct a URI from the component parts each of which may contain
template variables.
- createVariantListBuilder() - Method in class javax.ws.rs.ext.RuntimeDelegate
-
- createWadlGenerator(ServiceLocator) - Method in class org.glassfish.jersey.server.wadl.config.WadlGeneratorConfig
-
- credentials(String, byte[]) - Method in interface org.glassfish.jersey.client.authentication.HttpAuthenticationFeature.Builder
-
Set credentials.
- credentials(String, String) - Method in interface org.glassfish.jersey.client.authentication.HttpAuthenticationFeature.Builder
-
Set credentials.
- credentialsForBasic(String, String) - Method in interface org.glassfish.jersey.client.authentication.HttpAuthenticationFeature.UniversalBuilder
-
Set credentials that will be used for basic authentication only.
- credentialsForBasic(String, byte[]) - Method in interface org.glassfish.jersey.client.authentication.HttpAuthenticationFeature.UniversalBuilder
-
Set credentials that will be used for basic authentication only.
- credentialsForDigest(String, String) - Method in interface org.glassfish.jersey.client.authentication.HttpAuthenticationFeature.UniversalBuilder
-
Set credentials that will be used for digest authentication only.
- credentialsForDigest(String, byte[]) - Method in interface org.glassfish.jersey.client.authentication.HttpAuthenticationFeature.UniversalBuilder
-
Set credentials that will be used for digest authentication only.
- CsrfProtectionFilter - Class in org.glassfish.jersey.client.filter
-
Simple client-side filter that adds X-Requested-By headers to all state-changing
request (i.e.
- CsrfProtectionFilter() - Constructor for class org.glassfish.jersey.client.filter.CsrfProtectionFilter
-
Creates a new instance of the filter with X-Requested-By header value set to empty string.
- CsrfProtectionFilter(String) - Constructor for class org.glassfish.jersey.client.filter.CsrfProtectionFilter
-
Initialized the filter with a desired value of the X-Requested-By header.
- CsrfProtectionFilter - Class in org.glassfish.jersey.server.filter
-
- CsrfProtectionFilter() - Constructor for class org.glassfish.jersey.server.filter.CsrfProtectionFilter
-
- CustomProvidersFeature - Class in org.glassfish.jersey.client
-
Feature to provide the single-line registration of custom providers.
- CustomProvidersFeature(Collection<Class<?>>) - Constructor for class org.glassfish.jersey.client.CustomProvidersFeature
-
Constructs Feature which is used to register providers as providers in Configuration.
- generator(Class<? extends WadlGenerator>) - Static method in class org.glassfish.jersey.server.wadl.config.WadlGeneratorConfig
-
- generator(Class<? extends WadlGenerator>) - Method in class org.glassfish.jersey.server.wadl.config.WadlGeneratorConfig.WadlGeneratorConfigDescriptionBuilder
-
- GenericEntity<T> - Class in javax.ws.rs.core
-
Represents a message entity of a generic type T.
- GenericEntity(T) - Constructor for class javax.ws.rs.core.GenericEntity
-
Constructs a new generic entity.
- GenericEntity(T, Type) - Constructor for class javax.ws.rs.core.GenericEntity
-
Create a new instance of GenericEntity, supplying the generic type information.
- GenericType<T> - Class in javax.ws.rs.core
-
Represents a generic message entity type T.
- GenericType() - Constructor for class javax.ws.rs.core.GenericType
-
Constructs a new generic type, deriving the generic type and class from
type parameter.
- GenericType(Type) - Constructor for class javax.ws.rs.core.GenericType
-
Constructs a new generic type, supplying the generic type
information and deriving the class.
- get() - Method in interface javax.ws.rs.client.AsyncInvoker
-
Invoke HTTP GET method for the current request asynchronously.
- get(Class<T>) - Method in interface javax.ws.rs.client.AsyncInvoker
-
Invoke HTTP GET method for the current request asynchronously.
- get(GenericType<T>) - Method in interface javax.ws.rs.client.AsyncInvoker
-
Invoke HTTP GET method for the current request asynchronously.
- get(InvocationCallback<T>) - Method in interface javax.ws.rs.client.AsyncInvoker
-
Invoke HTTP GET method for the current request asynchronously.
- get() - Method in interface javax.ws.rs.client.SyncInvoker
-
Invoke HTTP GET method for the current request synchronously.
- get(Class<T>) - Method in interface javax.ws.rs.client.SyncInvoker
-
Invoke HTTP GET method for the current request synchronously.
- get(GenericType<T>) - Method in interface javax.ws.rs.client.SyncInvoker
-
Invoke HTTP GET method for the current request synchronously.
- get(Object) - Method in class javax.ws.rs.core.AbstractMultivaluedMap
-
- GET - Annotation Type in javax.ws.rs
-
Indicates that the annotated method responds to HTTP GET requests.
- GET - Static variable in annotation type javax.ws.rs.HttpMethod
-
HTTP GET method.
- get() - Method in class org.glassfish.jersey.client.JerseyInvocation.Builder
-
- get(Class<T>) - Method in class org.glassfish.jersey.client.JerseyInvocation.Builder
-
- get(GenericType<T>) - Method in class org.glassfish.jersey.client.JerseyInvocation.Builder
-
- getAbortResponse() - Method in class org.glassfish.jersey.client.ClientRequest
-
Get the request filter chain aborting response if set, or null otherwise.
- getAbortResponse() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get the request filter chain aborting response if set, or null otherwise.
- getAbsolutePath() - Method in interface javax.ws.rs.core.UriInfo
-
Get the absolute path of the request.
- getAbsolutePath() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get the absolute path of the request.
- getAbsolutePathBuilder() - Method in interface javax.ws.rs.core.UriInfo
-
Get the absolute path of the request in the form of a UriBuilder.
- getAcceptableLanguages() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get a list of languages that are acceptable for the response.
- getAcceptableLanguages() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get a list of languages that are acceptable for the response.
- getAcceptableLanguages() - Method in interface javax.ws.rs.core.HttpHeaders
-
Get a list of languages that are acceptable for the response.
- getAcceptableLanguages() - Method in class org.glassfish.jersey.server.ContainerRequest
-
- getAcceptableMediaTypes() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get a list of media types that are acceptable for the response.
- getAcceptableMediaTypes() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get a list of media types that are acceptable for the response.
- getAcceptableMediaTypes() - Method in interface javax.ws.rs.core.HttpHeaders
-
Get a list of media types that are acceptable for the response.
- getAcceptableMediaTypes() - Method in class org.glassfish.jersey.server.ContainerRequest
-
- getAllMethods() - Method in class org.glassfish.jersey.server.model.Resource
-
Provides resource methods and resource locator are available on the resource.
- getAllowedMethods() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the allowed HTTP methods from the Allow HTTP header.
- getAllowedMethods() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the allowed HTTP methods from the Allow HTTP header.
- getAllowedMethods() - Method in class javax.ws.rs.core.Response
-
Get the allowed HTTP methods from the Allow HTTP header.
- getAllowedMethods() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getAnnotation(Class<T>) - Method in class org.glassfish.jersey.server.model.AnnotatedMethod
-
- getAnnotation(Class<T>) - Method in class org.glassfish.jersey.server.model.Parameter
-
- getAnnotations() - Method in class javax.ws.rs.client.Entity
-
Get the entity annotations.
- getAnnotations() - Method in interface javax.ws.rs.ext.InterceptorContext
-
Get an array of the annotations formally declared on the artifact that
initiated the intercepted entity provider invocation.
- getAnnotations() - Method in class org.glassfish.jersey.server.model.AnnotatedMethod
-
- getAnnotations() - Method in class org.glassfish.jersey.server.model.Parameter
-
- getAny() - Method in class com.sun.research.ws.wadl.Application
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Grammars
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Link
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Method
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Option
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Representation
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Request
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Resource
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Resources
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.ResourceType
-
Gets the value of the any property.
- getAny() - Method in class com.sun.research.ws.wadl.Response
-
Gets the value of the any property.
- getAppHandler() - Method in class org.glassfish.jersey.servlet.WebComponent
-
- getApplication() - Method in class org.glassfish.jersey.server.ResourceConfig
-
Returns JAX-RS application corresponding with this ResourceConfig.
- getApplication(UriInfo, boolean) - Method in interface org.glassfish.jersey.server.wadl.WadlApplicationContext
-
Get a new instance of a
ApplicationDescription corresponding to all
the root resource classes, and configure the base URI.
- getApplication(UriInfo, Resource, boolean) - Method in interface org.glassfish.jersey.server.wadl.WadlApplicationContext
-
Get a new instance of
Application for a particular resource.
- getApplicationClass() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationMXBean
-
- getApplicationHandler() - Method in interface org.glassfish.jersey.server.spi.Container
-
Get the Jersey server-side application handler associated with the container.
- getApplicationHandler() - Method in class org.glassfish.jersey.servlet.ServletContainer
-
- getApplicationName() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationMXBean
-
Get the application name.
- getApplicationName() - Method in class org.glassfish.jersey.server.ResourceConfig
-
Get the name of the Jersey application.
- getAuthenticationScheme() - Method in interface javax.ws.rs.core.SecurityContext
-
Returns the string value of the authentication scheme used to protect
the resource.
- getAverageDuration() - Method in interface org.glassfish.jersey.server.monitoring.TimeWindowStatistics
-
Returns the average duration (processing time) in milliseconds of the request processing measured
in the time window.
- getBackgroundThreadFactory() - Method in interface org.glassfish.jersey.spi.RuntimeThreadProvider
-
Get a ThreadFactory that will create threads that will be used for running background
tasks, independently of current request scope.
- getBase() - Method in class com.sun.research.ws.wadl.Resources
-
Gets the value of the base property.
- getBaseUri() - Method in interface javax.ws.rs.core.UriInfo
-
Get the base URI of the application.
- getBaseUri() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get base request URI.
- getBaseUriBuilder() - Method in interface javax.ws.rs.core.UriInfo
-
Get the base URI of the application in the form of a UriBuilder.
- getCacheExtension() - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to a set of extension cache control directives.
- getChallenges() - Method in exception javax.ws.rs.NotAuthorizedException
-
Get the list of authorization challenges associated with the exception and
applicable to the resource requested by the client.
- getCharset(MediaType) - Static method in class org.glassfish.jersey.message.MessageUtils
-
Get the character set from a media type.
- getChildResources() - Method in class org.glassfish.jersey.server.model.Resource
-
Returns the list of child resources available on this resource.
- getChildRuntimeResources() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
Get child runtime resources of this resource.
- getChunkType() - Method in class org.glassfish.jersey.client.ChunkedInput
-
Get chunk data media type.
- getClasses() - Method in class javax.ws.rs.core.Application
-
Get a set of root resource, provider and
feature classes.
- getClasses() - Method in interface javax.ws.rs.core.Configuration
-
Get the immutable set of registered JAX-RS component (such as provider or
feature) classes to be instantiated, injected and utilized in the scope
of the configurable instance.
- getClasses() - Method in class org.glassfish.jersey.client.ClientConfig
-
- getClasses() - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getClassLoader() - Method in class org.glassfish.jersey.server.ResourceConfig
-
Get resource and provider class loader.
- getClient() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the client instance associated with the request.
- getClient() - Method in class org.glassfish.jersey.client.ClientConfig
-
Get the parent Jersey client this configuration is bound to.
- getClient() - Method in class org.glassfish.jersey.client.ClientRequest
-
- getComment() - Method in class javax.ws.rs.core.NewCookie
-
Get the comment associated with the cookie.
- getComponents() - Method in class org.glassfish.jersey.server.model.HandlerConstructor
-
- getComponents() - Method in class org.glassfish.jersey.server.model.Invocable
-
- getComponents() - Method in class org.glassfish.jersey.server.model.MethodHandler
-
- getComponents() - Method in class org.glassfish.jersey.server.model.Resource
-
- getComponents() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
- getComponents() - Method in class org.glassfish.jersey.server.model.ResourceModel
-
- getComponents() - Method in interface org.glassfish.jersey.server.model.ResourceModelComponent
-
Should return all existing resource model sub-components.
- getComponents() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
- getConfigType() - Method in interface org.glassfish.jersey.servlet.WebConfig
-
Get the configuration type of this config.
- getConfigType() - Method in class org.glassfish.jersey.servlet.WebFilterConfig
-
- getConfigType() - Method in class org.glassfish.jersey.servlet.WebServletConfig
-
- getConfiguration() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the immutable configuration of the request.
- getConfiguration() - Method in interface javax.ws.rs.core.Configurable
-
Get a live view of an internal configuration state of this configurable instance.
- getConfiguration() - Method in class org.glassfish.jersey.client.ClientConfig
-
- getConfiguration() - Method in class org.glassfish.jersey.client.ClientRequest
-
- getConfiguration() - Method in interface org.glassfish.jersey.client.Initializable
-
Get a live view of an internal client configuration state of this initializable instance.
- getConfiguration() - Method in class org.glassfish.jersey.client.JerseyClient
-
- getConfiguration() - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- getConfiguration() - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- getConfiguration() - Method in class org.glassfish.jersey.server.ApplicationHandler
-
Get the application configuration.
- getConfiguration() - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getConfiguration() - Method in interface org.glassfish.jersey.server.spi.Container
-
- getConfiguration() - Method in class org.glassfish.jersey.servlet.ServletContainer
-
- getConfiguratorClass() - Method in class org.glassfish.jersey.server.wadl.config.WadlGeneratorDescription
-
- getConnection(URL) - Method in interface org.glassfish.jersey.client.HttpUrlConnectorProvider.ConnectionFactory
-
- getConnector() - Method in class org.glassfish.jersey.client.ClientConfig
-
Get the client transport connector.
- getConnector(Client, Configuration) - Method in class org.glassfish.jersey.client.HttpUrlConnectorProvider
-
- getConnector(Client, Configuration) - Method in class org.glassfish.jersey.client.spi.CachingConnectorProvider
-
- getConnector(Client, Configuration) - Method in interface org.glassfish.jersey.client.spi.ConnectorProvider
-
Get a Jersey client connector instance for a given
client instance
and Jersey client runtime
configuration.
- getConnectorProvider() - Method in class org.glassfish.jersey.client.ClientConfig
-
Get the client transport connector provider.
- getConstructor() - Method in class org.glassfish.jersey.server.model.HandlerConstructor
-
Get the underlying java constructor.
- getConstructors() - Method in class org.glassfish.jersey.server.model.MethodHandler
-
Get the resource method handler constructors.
- getConsumedTypes() - Method in interface org.glassfish.jersey.server.model.Consuming
-
Get the consumed media types supported by the component.
- getConsumedTypes() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
- getConsumesMediaType() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodMXBean
-
Get the string with media types consumed by this method, enclosed in double quotas and
separated by a comma (e.g.
- getContainerRequest() - Method in interface org.glassfish.jersey.server.monitoring.RequestEvent
-
Get the container request.
- getContainerRequestFilters() - Method in interface org.glassfish.jersey.server.monitoring.RequestEvent
-
- getContainerResponse() - Method in interface org.glassfish.jersey.server.monitoring.RequestEvent
-
Get the container response.
- getContainerResponseFilters() - Method in interface org.glassfish.jersey.server.monitoring.RequestEvent
-
- getContent() - Method in class com.sun.research.ws.wadl.Doc
-
Gets the value of the content property.
- getContext(Class<?>) - Method in interface javax.ws.rs.ext.ContextResolver
-
Get a context of type T that is applicable to the supplied
type.
- getContext() - Method in class org.glassfish.jersey.server.spi.ExternalRequestContext
-
Get me current external context data.
- getContextResolver(Class<T>, MediaType) - Method in interface javax.ws.rs.ext.Providers
-
Get a context resolver for a particular type of context and media type.
- getContractMap() - Method in class org.glassfish.jersey.model.ContractProvider
-
Get the map of contracts and their priorities.
- getContracts(Class<?>) - Method in interface javax.ws.rs.core.Configuration
-
Get the extension contract registration information for a component of a given class.
- getContracts(Class<?>) - Method in class org.glassfish.jersey.client.ClientConfig
-
- getContracts() - Method in class org.glassfish.jersey.model.ContractProvider.Builder
-
Get the map of contracts for the built contract provider model.
- getContracts() - Method in class org.glassfish.jersey.model.ContractProvider
-
Get provided contracts recognized by Jersey.
- getContracts(Class<?>) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getConverter(Class<T>, Type, Annotation[]) - Method in interface javax.ws.rs.ext.ParamConverterProvider
-
Obtain a
ParamConverter that can provide from/to string conversion
for an instance of a particular Java type.
- getCookies() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get any cookies that accompanied the request.
- getCookies() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get any new cookies set on the response message.
- getCookies() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get any cookies that accompanied the request.
- getCookies() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get any new cookies set on the response message.
- getCookies() - Method in interface javax.ws.rs.core.HttpHeaders
-
Get any cookies that accompanied the request.
- getCookies() - Method in class javax.ws.rs.core.Response
-
Get any new cookies set on the response message.
- getCookies() - Method in class org.glassfish.jersey.client.ClientRequest
-
- getCookies() - Method in class org.glassfish.jersey.client.ClientResponse
-
- getCookies() - Method in class org.glassfish.jersey.server.ContainerRequest
-
- getCookies() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getDate() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get message date.
- getDate() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get message date.
- getDate() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get message date.
- getDate() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get message date.
- getDate() - Method in interface javax.ws.rs.core.HttpHeaders
-
Get message date.
- getDate() - Method in class javax.ws.rs.core.Response
-
Get message date.
- getDate() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getDeclaredAnnotations() - Method in class org.glassfish.jersey.server.model.AnnotatedMethod
-
- getDeclaredAnnotations() - Method in class org.glassfish.jersey.server.model.Parameter
-
- getDeclaringClassName() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodMXBean
-
Get the full class name of the class that declares the handling method.
- getDefault() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the default property.
- getDefaultContext() - Static method in class org.glassfish.jersey.SslConfigurator
-
Get a new instance of a
SSLContext configured using default configuration settings.
- getDefaultContext(boolean) - Static method in class org.glassfish.jersey.SslConfigurator
-
Get a new instance of a
SSLContext configured using default configuration settings.
- getDefaultPriority() - Method in class org.glassfish.jersey.model.ContractProvider.Builder
-
Get the default priority of the built contract provider model.
- getDefaultStringValue() - Method in exception org.glassfish.jersey.server.ParamException
-
Get the default String value.
- getDefaultValue() - Method in class org.glassfish.jersey.server.model.Parameter
-
Get the default parameter value.
- getDefinitionMethod() - Method in class org.glassfish.jersey.server.model.Invocable
-
Getter for the Java method that should be executed.
- getDoc() - Method in class com.sun.research.ws.wadl.Application
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Grammars
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Include
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Link
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Method
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Option
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Representation
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Request
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Resource
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Resources
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.ResourceType
-
Gets the value of the doc property.
- getDoc() - Method in class com.sun.research.ws.wadl.Response
-
Gets the value of the doc property.
- getDomain() - Method in class javax.ws.rs.core.Cookie
-
Get the domain of the cookie.
- getElement() - Method in class com.sun.research.ws.wadl.Representation
-
Gets the value of the element property.
- getEncoding() - Method in class javax.ws.rs.client.Entity
-
Get entity encoding.
- getEncoding() - Method in class javax.ws.rs.core.Variant
-
Get the encoding of the variant.
- getEntity() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the message entity Java instance.
- getEntity() - Method in class javax.ws.rs.client.Entity
-
Get entity data.
- getEntity() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the message entity Java instance.
- getEntity() - Method in class javax.ws.rs.core.GenericEntity
-
Get the enclosed entity.
- getEntity() - Method in class javax.ws.rs.core.Response
-
Get the message entity Java instance.
- getEntity() - Method in interface javax.ws.rs.ext.WriterInterceptorContext
-
Get object to be written as HTTP entity.
- getEntity() - Method in class org.glassfish.jersey.client.ClientResponse
-
Get the message entity Java instance.
- getEntity() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getEntityAnnotations() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the annotations attached to the entity instance.
- getEntityAnnotations() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the annotations attached to the entity instance.
- getEntityAnnotations() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getEntityClass() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the raw entity type information.
- getEntityClass() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the raw entity type information.
- getEntityClass() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getEntityStream() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the entity output stream.
- getEntityStream() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the entity input stream.
- getEntityStream() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get the entity input stream.
- getEntityStream() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the entity output stream.
- getEntityStream() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getEntityTag() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the entity tag.
- getEntityTag() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the entity tag.
- getEntityTag() - Method in class javax.ws.rs.core.Response
-
Get the entity tag.
- getEntityTag() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getEntityType() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the generic entity type information.
- getEntityType() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the generic entity type information.
- getEntityType() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getException() - Method in interface org.glassfish.jersey.server.monitoring.RequestEvent
-
Get the latest exception, if any, thrown by the request and response processing.
- getExceptionCause() - Method in interface org.glassfish.jersey.server.monitoring.RequestEvent
-
- getExceptionMapper(Class<T>) - Method in interface javax.ws.rs.ext.Providers
-
Get an exception mapping provider for a particular class of exception.
- getExceptionMapper() - Method in interface org.glassfish.jersey.server.monitoring.RequestEvent
-
Get the
ExceptionMapper that was found and used during the exception mapping phase.
- getExceptionMapperCount() - Method in interface org.glassfish.jersey.server.monitoring.ExceptionMapperMXBean
-
Get the statistics of execution of exception mappers.
- getExceptionMapperExecutions() - Method in interface org.glassfish.jersey.server.monitoring.ExceptionMapperStatistics
-
Get the count of exception mapper executions.
- getExceptionMapperStatistics() - Method in interface org.glassfish.jersey.server.monitoring.MonitoringStatistics
-
- getExpiry() - Method in class javax.ws.rs.core.NewCookie
-
Get the cookie expiry date.
- getFamily() - Method in enum javax.ws.rs.core.Response.Status
-
Get the class of status code.
- getFamily() - Method in interface javax.ws.rs.core.Response.StatusType
-
Get the class of status code.
- getFilterConfig() - Method in interface org.glassfish.jersey.servlet.WebConfig
-
Get the corresponding FilterConfig if this WebConfig represents a FilterConfig
- getFilterConfig() - Method in class org.glassfish.jersey.servlet.WebFilterConfig
-
- getFilterConfig() - Method in class org.glassfish.jersey.servlet.WebServletConfig
-
- getFirst(K) - Method in class javax.ws.rs.core.AbstractMultivaluedMap
-
- getFirst(K) - Method in interface javax.ws.rs.core.MultivaluedMap
-
A shortcut to get the first value of the supplied key.
- getFixed() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the fixed property.
- getFlag() - Method in enum org.glassfish.jersey.server.filter.HttpMethodOverrideFilter.Source
-
Returns the numeric value of the bit corresponding to this flag.
- getFullPathRegex() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
Get full regular expression of this runtime resource prefixed by regular expression of parent if present.
- getGeneratorClass() - Method in class org.glassfish.jersey.server.wadl.config.WadlGeneratorDescription
-
- getGenericParameterTypes() - Method in class org.glassfish.jersey.server.model.AnnotatedMethod
-
Get generic method parameter types.
- getGenericType() - Method in interface javax.ws.rs.ext.InterceptorContext
-
Get the type of the object to be produced or written.
- getGrammars() - Method in class com.sun.research.ws.wadl.Application
-
Gets the value of the grammars property.
- getGroupIndexes() - Method in class org.glassfish.jersey.uri.PatternWithGroups
-
Get the group indexes to capturing groups.
- getHandler() - Method in class org.glassfish.jersey.server.model.Invocable
-
- getHandlerClass() - Method in class org.glassfish.jersey.server.model.MethodHandler
-
Get the resource method handler class.
- getHandlerClasses() - Method in class org.glassfish.jersey.server.model.Resource
-
Get the method handler classes for the resource methods registered on the resource.
- getHandlerInstance() - Method in class org.glassfish.jersey.server.model.MethodHandler
-
Get the raw handler instance that is backing this method handler.
- getHandlerInstances() - Method in class org.glassfish.jersey.server.model.Resource
-
Get the method handler (singleton) instances for the resource methods registered
on the resource.
- getHandlingMethod() - Method in class org.glassfish.jersey.server.model.Invocable
-
Getter for the Java method
- getHeaders() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the mutable request headers multivalued map.
- getHeaders() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the mutable response headers multivalued map.
- getHeaders() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get the mutable request headers multivalued map.
- getHeaders() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the mutable response headers multivalued map.
- getHeaders() - Method in class javax.ws.rs.core.Response
-
Get view of the response headers and their object values.
- getHeaders() - Method in interface javax.ws.rs.ext.ReaderInterceptorContext
-
Get mutable map of HTTP headers.
- getHeaders() - Method in interface javax.ws.rs.ext.WriterInterceptorContext
-
Get mutable map of HTTP headers.
- getHeaders() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getHeaderString(String) - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get a message header as a single string value.
- getHeaderString(String) - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get a message header as a single string value.
- getHeaderString(String) - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get a message header as a single string value.
- getHeaderString(String) - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get a message header as a single string value.
- getHeaderString(String) - Method in interface javax.ws.rs.core.HttpHeaders
-
Get a HTTP header as a single string value.
- getHeaderString(String) - Method in class javax.ws.rs.core.Response
-
Get a message header as a single string value.
- getHeaderString(String) - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getHostnameVerifier() - Method in interface javax.ws.rs.client.Client
-
Get the hostname verifier configured in the client or null in case
no hostname verifier has been configured.
- getHostnameVerifier() - Method in class org.glassfish.jersey.client.JerseyClient
-
- getHref() - Method in class com.sun.research.ws.wadl.Include
-
Gets the value of the href property.
- getHref() - Method in class com.sun.research.ws.wadl.Method
-
Gets the value of the href property.
- getHref() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the href property.
- getHref() - Method in class com.sun.research.ws.wadl.Representation
-
Gets the value of the href property.
- getHttpMethod() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
Get the associated HTTP method.
- getHttpMethod() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodMXBean
-
Get the HTTP method of the method.
- getId() - Method in class com.sun.research.ws.wadl.Method
-
Gets the value of the id property.
- getId() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the id property.
- getId() - Method in class com.sun.research.ws.wadl.Representation
-
Gets the value of the id property.
- getId() - Method in class com.sun.research.ws.wadl.Resource
-
Gets the value of the id property.
- getId() - Method in class com.sun.research.ws.wadl.ResourceType
-
Gets the value of the id property.
- getInclude() - Method in class com.sun.research.ws.wadl.Grammars
-
Gets the value of the include property.
- getInflector() - Method in class org.glassfish.jersey.server.model.Inflecting
-
Get the inflector.
- getInitParameter(String) - Method in interface org.glassfish.jersey.servlet.WebConfig
-
Get an initialization parameter.
- getInitParameter(String) - Method in class org.glassfish.jersey.servlet.WebFilterConfig
-
- getInitParameter(String) - Method in class org.glassfish.jersey.servlet.WebServletConfig
-
- getInitParameterNames() - Method in interface org.glassfish.jersey.servlet.WebConfig
-
Get the enumeration of initialization parameter names.
- getInitParameterNames() - Method in class org.glassfish.jersey.servlet.WebFilterConfig
-
- getInitParameterNames() - Method in class org.glassfish.jersey.servlet.WebServletConfig
-
- getInputStream() - Method in interface javax.ws.rs.ext.ReaderInterceptorContext
-
Get the input stream of the object to be read.
- getInstance() - Static method in class javax.ws.rs.ext.RuntimeDelegate
-
Obtain a RuntimeDelegate instance.
- getInstance(ServiceLocator) - Method in class org.glassfish.jersey.server.model.MethodHandler
-
Get the injected resource method handler instance.
- getInstances() - Method in interface javax.ws.rs.core.Configuration
-
Get the immutable set of registered JAX-RS component (such as provider or
feature) instances to be utilized by the configurable instance.
- getInstances() - Method in class org.glassfish.jersey.client.ClientConfig
-
- getInstances() - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getInvocable() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
Get the invocable method model.
- getIssueList() - Method in class org.glassfish.jersey.server.model.ComponentModelValidator
-
- getIssues() - Method in exception org.glassfish.jersey.server.model.ModelValidationException
-
Get validation issues.
- getJAXBContext() - Method in interface org.glassfish.jersey.server.wadl.WadlApplicationContext
-
Get the default JAXB context associated with the
WadlGenerator
for the Web application.
- getLang() - Method in class com.sun.research.ws.wadl.Doc
-
Gets the value of the lang property.
- getLanguage() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the language of the entity.
- getLanguage() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the language of the entity.
- getLanguage() - Method in class javax.ws.rs.client.Entity
-
Get entity language.
- getLanguage() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get the language of the entity.
- getLanguage() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the language of the entity.
- getLanguage() - Method in interface javax.ws.rs.core.HttpHeaders
-
Get the language of the request entity.
- getLanguage() - Method in class javax.ws.rs.core.Response
-
Get the language of the message entity.
- getLanguage() - Method in class javax.ws.rs.core.Variant
-
Get the language of the variant.
- getLanguage() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getLanguageString() - Method in class javax.ws.rs.core.Variant
-
Get the string representation of the variant language,
or null if no language has been set.
- getLastModified() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the last modified date.
- getLastModified() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the last modified date.
- getLastModified() - Method in class javax.ws.rs.core.Response
-
Get the last modified date.
- getLastModified() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getLastResponseCode() - Method in interface org.glassfish.jersey.server.monitoring.ResponseMXBean
-
Returns the response code of a last response written by the application.
- getLastResponseCode() - Method in interface org.glassfish.jersey.server.monitoring.ResponseStatistics
-
Returns the response code of a last response written by the application.
- getLastStartTime() - Method in interface org.glassfish.jersey.server.monitoring.ExecutionStatistics
-
Return time when target was executed last time.
- getLength() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get Content-Length value.
- getLength() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get Content-Length value.
- getLength() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get Content-Length value.
- getLength() - Method in interface javax.ws.rs.core.HttpHeaders
-
Get Content-Length value.
- getLength() - Method in class javax.ws.rs.core.Response
-
Get Content-Length value.
- getLength() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getLink() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the link property.
- getLink(String) - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the link for the relation.
- getLink(String) - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the link for the relation.
- getLink(String) - Method in class javax.ws.rs.core.Response
-
Get the link for the relation.
- getLink(String) - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getLinkBuilder(String) - Method in interface javax.ws.rs.client.ClientResponseContext
-
Convenience method that returns a
Link.Builder
for the relation.
- getLinkBuilder(String) - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Convenience method that returns a
Link.Builder
for the relation.
- getLinkBuilder(String) - Method in class javax.ws.rs.core.Response
-
Convenience method that returns a
Link.Builder for the relation.
- getLinkBuilder(String) - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getLinks() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the links attached to the message as header.
- getLinks() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the links attached to the message as header.
- getLinks() - Method in class javax.ws.rs.core.Response
-
Get the links attached to the message as headers.
- getLinks() - Method in class org.glassfish.jersey.client.ClientResponse
-
- getLinks() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getLocation() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the location.
- getLocation() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the location.
- getLocation() - Method in class javax.ws.rs.core.Response
-
Get the location.
- getLocation() - Method in exception javax.ws.rs.RedirectionException
-
Get the redirection response location.
- getLocation() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getLocatorSubResources() - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
Get the list of sub resources returned from resource locators during matching.
- getMappedThrowable() - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
Get the throwable that was mapped to a response.
- getMatchedModelResource() - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
- getMatchedResourceLocators() - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
Get resource locators matched since beginning of a matching.
- getMatchedResourceMethod() - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
- getMatchedResources() - Method in interface javax.ws.rs.core.UriInfo
-
Get a read-only list of the currently matched resource class instances.
- getMatchedResults() - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
Get a read-only list of
MatchResult for matched resources.
- getMatchedRuntimeResources() - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
Return all matched
runtime resources including runtime resources
based on child resources.
- getMatchedTemplates() - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
Get a read-only list of
UriTemplate for matched resources.
- getMatchedURIs() - Method in interface javax.ws.rs.core.UriInfo
-
Get a read-only list of URIs for matched resources.
- getMatchedURIs(boolean) - Method in interface javax.ws.rs.core.UriInfo
-
Get a read-only list of URIs for matched resources.
- getMatrixParameters() - Method in interface javax.ws.rs.core.PathSegment
-
Get a map of the matrix parameters associated with the path segment.
- getMaxAge() - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the max-age cache control directive.
- getMaxAge() - Method in class javax.ws.rs.core.NewCookie
-
Get the maximum age of the the cookie in seconds.
- getMaximumDuration() - Method in interface org.glassfish.jersey.server.monitoring.TimeWindowStatistics
-
Returns the maximum duration (processing time) in milliseconds of the request processing measured
in the time window.
- getMediaType() - Method in class com.sun.research.ws.wadl.Option
-
Gets the value of the mediaType property.
- getMediaType() - Method in class com.sun.research.ws.wadl.Representation
-
Gets the value of the mediaType property.
- getMediaType() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the media type of the entity.
- getMediaType() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the media type of the entity.
- getMediaType() - Method in class javax.ws.rs.client.Entity
-
Get entity media type.
- getMediaType() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get the media type of the entity.
- getMediaType() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the media type of the entity.
- getMediaType() - Method in interface javax.ws.rs.core.HttpHeaders
-
Get the media type of the request entity.
- getMediaType() - Method in class javax.ws.rs.core.Response
-
Get the media type of the message entity.
- getMediaType() - Method in class javax.ws.rs.core.Variant
-
Get the media type of the variant.
- getMediaType() - Method in interface javax.ws.rs.ext.InterceptorContext
-
Get media type of HTTP entity.
- getMediaType() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getMessage() - Method in exception org.glassfish.jersey.server.model.ModelValidationException
-
- getMessage() - Method in class org.glassfish.jersey.server.model.ResourceModelIssue
-
Human-readable description of the issue.
- getMessageBodyReader(Class<T>, Type, Annotation[], MediaType) - Method in interface javax.ws.rs.ext.Providers
-
Get a message body reader that matches a set of criteria.
- getMessageBodyReader(Class<T>, Type, Annotation[], MediaType) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get a message body reader that matches a set of criteria.
- getMessageBodyReader(Class<T>, Type, Annotation[], MediaType, PropertiesDelegate) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get a message body reader that matches a set of criteria.
- getMessageBodyReaderMediaTypes(Class<?>, Type, Annotation[]) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get the list of media types supported for a Java type.
- getMessageBodyReaderMediaTypesByType(Class<?>) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get the list of media types supported for a Java type.
- getMessageBodyReadersForType(Class<?>) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get a list of MessageBodyReaders that are suitable for the given type.
- getMessageBodyWriter(Class<T>, Type, Annotation[], MediaType) - Method in interface javax.ws.rs.ext.Providers
-
Get a message body writer that matches a set of criteria.
- getMessageBodyWriter(Class<T>, Type, Annotation[], MediaType) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get a message body writer that matches a set of criteria.
- getMessageBodyWriter(Class<T>, Type, Annotation[], MediaType, PropertiesDelegate) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get a message body writer that matches a set of criteria.
- getMessageBodyWriterMediaType(Class<?>, Type, Annotation[], List<MediaType>) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get the most acceptable media type supported for a Java type given a set of
acceptable media types.
- getMessageBodyWriterMediaTypes(Class<?>, Type, Annotation[]) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get the list of media types supported for a Java type.
- getMessageBodyWriterMediaTypesByType(Class<?>) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get the list of media types supported for a Java type.
- getMessageBodyWritersForType(Class<?>) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get a list of MessageBodyWriters that are suitable for the given type.
- getMetadata() - Method in class javax.ws.rs.core.Response
-
- getMetaMethodAnnotations(Class<T>) - Method in class org.glassfish.jersey.server.model.AnnotatedMethod
-
Get all instances of the specified meta-annotation type found on the method
annotations.
- getMethod() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the request method.
- getMethod() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get the request method.
- getMethod() - Method in interface javax.ws.rs.core.Request
-
Get the request method, e.g.
- getMethod() - Method in class org.glassfish.jersey.client.ClientRequest
-
- getMethod() - Method in class org.glassfish.jersey.server.ContainerRequest
-
- getMethod() - Method in class org.glassfish.jersey.server.model.AnnotatedMethod
-
Get the underlying Java method.
- getMethodName() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodMXBean
-
Get the name of the Java method.
- getMethodOrResource() - Method in class com.sun.research.ws.wadl.Resource
-
Gets the value of the methodOrResource property.
- getMethodOrResource() - Method in class com.sun.research.ws.wadl.ResourceType
-
Gets the value of the methodOrResource property.
- getMethodStatistics() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodStatistics
-
- getMinimumDuration() - Method in interface org.glassfish.jersey.server.monitoring.TimeWindowStatistics
-
Returns the minimum duration (processing time) in milliseconds of the request processing measured
in the time window.
- getName() - Method in class com.sun.research.ws.wadl.Method
-
Gets the value of the name property.
- getName() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the name property.
- getName() - Method in class javax.ws.rs.core.Cookie
-
Get the name of the cookie.
- getName() - Method in interface org.glassfish.jersey.client.spi.Connector
-
Get name of current connector.
- getName() - Method in class org.glassfish.jersey.server.model.Resource
-
Get the resource name.
- getName() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMXBean
-
Get the name of the resource.
- getName() - Method in interface org.glassfish.jersey.servlet.WebConfig
-
Get the name of the Web component.
- getName() - Method in class org.glassfish.jersey.servlet.WebFilterConfig
-
- getName() - Method in class org.glassfish.jersey.servlet.WebServletConfig
-
- getNameBindings() - Method in class org.glassfish.jersey.model.ContractProvider.Builder
-
Get name bindings of the built contract provider model.
- getNameBindings() - Method in class org.glassfish.jersey.model.ContractProvider
-
- getNameBindings() - Method in interface org.glassfish.jersey.model.NameBound
-
Get the collection of name bindings attached to this component.
- getNameBindings() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
- getNames() - Method in class org.glassfish.jersey.server.model.Resource
-
Return a list of resource names.
- getNoCacheFields() - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the value of the no-cache cache control directive.
- getNumberOfExplicitCharacters() - Method in class org.glassfish.jersey.uri.UriTemplate
-
Get the number of characters in the regular expression not resulting
from conversion of template variables.
- getNumberOfExplicitRegexes() - Method in class org.glassfish.jersey.uri.UriTemplate
-
Get the number of explicit regular expressions declared in the template variables.
- getNumberOfRegexGroups() - Method in class org.glassfish.jersey.uri.UriTemplate
-
Get the number of regular expression groups
- getNumberOfTemplateVariables() - Method in class org.glassfish.jersey.uri.UriTemplate
-
Get the number of template variables.
- getOption() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the option property.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Doc
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Include
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Link
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Method
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Option
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Param
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Representation
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Request
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Resource
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Resources
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.ResourceType
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOtherAttributes() - Method in class com.sun.research.ws.wadl.Response
-
Gets a map that contains attributes that aren't bound to any typed property on this class.
- getOutputStream() - Method in interface javax.ws.rs.ext.WriterInterceptorContext
-
Get the output stream for the object to be written.
- getParam() - Method in class com.sun.research.ws.wadl.Representation
-
Gets the value of the param property.
- getParam() - Method in class com.sun.research.ws.wadl.Request
-
Gets the value of the param property.
- getParam() - Method in class com.sun.research.ws.wadl.Resource
-
Gets the value of the param property.
- getParam() - Method in class com.sun.research.ws.wadl.ResourceType
-
Gets the value of the param property.
- getParam() - Method in class com.sun.research.ws.wadl.Response
-
Gets the value of the param property.
- getParameterAnnotations() - Method in class org.glassfish.jersey.server.model.AnnotatedMethod
-
Get method parameter annotations.
- getParameterName() - Method in exception org.glassfish.jersey.server.ParamException
-
Get the parameter name.
- getParameters() - Method in class javax.ws.rs.core.MediaType
-
Getter for a read-only parameter map.
- getParameters() - Method in class org.glassfish.jersey.server.model.HandlerConstructor
-
- getParameters() - Method in class org.glassfish.jersey.server.model.Invocable
-
- getParameters() - Method in interface org.glassfish.jersey.server.model.Parameterized
-
Provides access to all parameters associated with given Parameterized instance.
- getParameterType() - Method in exception org.glassfish.jersey.server.ParamException
-
Get the type of the parameter annotation.
- getParameterTypes() - Method in class org.glassfish.jersey.server.model.AnnotatedMethod
-
Get method parameter types.
- getParams() - Method in class javax.ws.rs.core.Link
-
Returns an immutable map that includes all the link parameters
defined on this link.
- getParams() - Method in class javax.ws.rs.core.Link.JaxbLink
-
Get the parameter map for this link.
- getParent() - Method in class org.glassfish.jersey.server.model.Resource
-
Get the parent resource for this resource model or null in case this
resource is a top-level resource and does not have a parent.
- getParent() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
Get the parent resource for this resource method model.
- getParent() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
Get parent of this runtime resource.
- getParentResources() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
- getParser() - Method in class org.glassfish.jersey.client.ChunkedInput
-
Get the underlying chunk parser.
- getPath() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the path property.
- getPath() - Method in class com.sun.research.ws.wadl.Resource
-
Gets the value of the path property.
- getPath() - Method in class javax.ws.rs.core.Cookie
-
Get the path of the cookie.
- getPath() - Method in interface javax.ws.rs.core.PathSegment
-
Get the path segment.
- getPath() - Method in interface javax.ws.rs.core.UriInfo
-
Get the path of the current request relative to the base URI as a string.
- getPath(boolean) - Method in interface javax.ws.rs.core.UriInfo
-
Get the path of the current request relative to the base URI as a string.
- getPath(boolean) - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get the path of the current request relative to the application root (base)
URI as a string.
- getPath(Class<?>) - Static method in class org.glassfish.jersey.server.model.Resource
-
Get the resource class
@Path annotation.
- getPath() - Method in class org.glassfish.jersey.server.model.Resource
-
- getPath() - Method in interface org.glassfish.jersey.server.model.Routed
-
Get the path direct assigned to the component.
- getPath() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodMXBean
-
Get the sub resource method path of the method.
- getPathParameters() - Method in interface javax.ws.rs.core.UriInfo
-
Get the values of any embedded URI template parameters.
- getPathParameters(boolean) - Method in interface javax.ws.rs.core.UriInfo
-
Get the values of any embedded URI template parameters.
- getPathPattern() - Method in class org.glassfish.jersey.server.model.Resource
-
- getPathPattern() - Method in interface org.glassfish.jersey.server.model.Routed
-
Get the path pattern that can be used for matching the remaining
request URI against this component represented by this model.
- getPathPattern() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
Get path pattern for matching purposes.
- getPathSegments() - Method in interface javax.ws.rs.core.UriInfo
-
Get the path of the current request relative to the base URI as a
list of
PathSegment.
- getPathSegments(boolean) - Method in interface javax.ws.rs.core.UriInfo
-
Get the path of the current request relative to the base URI as a list of
PathSegment.
- getPathSegments(String) - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
Get the path segments that contain a template variable.
- getPathSegments(String, boolean) - Method in interface org.glassfish.jersey.server.ExtendedUriInfo
-
Get the path segments that contain a template variable.
- getPattern() - Method in class org.glassfish.jersey.uri.UriTemplate
-
Get the URI pattern.
- getPriority(Class<?>) - Method in class org.glassfish.jersey.model.ContractProvider
-
Get the provider contract priority, if set, default component provider, if not set.
- getPrivateFields() - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the value of the private cache control directive.
- getProducedTypes() - Method in interface org.glassfish.jersey.server.model.Producing
-
Get the produced media types supported by the component.
- getProducedTypes() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
- getProducesMediaType() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodMXBean
-
Get the string with media types produced by this method, enclosed in double quotas and
separated by a comma (e.g.
- getProfile() - Method in class com.sun.research.ws.wadl.Representation
-
Gets the value of the profile property.
- getProperties() - Method in class javax.ws.rs.core.Application
-
Get a map of custom application-wide properties.
- getProperties() - Method in interface javax.ws.rs.core.Configuration
-
Get the immutable bag of configuration properties.
- getProperties() - Method in class org.glassfish.jersey.client.ClientConfig
-
- getProperties() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationMXBean
-
Get the map of configuration properties converted to strings.
- getProperties() - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getProperties() - Method in class org.glassfish.jersey.server.wadl.config.WadlGeneratorDescription
-
- getPropertiesDelegate() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get the underlying properties delegate.
- getProperty(String) - Method in interface javax.ws.rs.client.ClientRequestContext
-
Returns the property with the given name registered in the current request/response
exchange context, or null if there is no property by that name.
- getProperty(String) - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Returns the property with the given name registered in the current request/response
exchange context, or null if there is no property by that name.
- getProperty(String) - Method in interface javax.ws.rs.core.Configuration
-
Get the value for the property with a given name.
- getProperty(String) - Method in interface javax.ws.rs.ext.InterceptorContext
-
Returns the property with the given name registered in the current request/response
exchange context, or null if there is no property by that name.
- getProperty(String) - Method in class org.glassfish.jersey.client.ClientConfig
-
- getProperty(String) - Method in class org.glassfish.jersey.client.ClientRequest
-
- getProperty(String) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- getProperty(String) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getPropertyNames() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Returns an immutable
collection containing the property names
available within the context of the current request/response exchange context.
- getPropertyNames() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Returns an immutable
collection containing the property
names available within the context of the current request/response exchange context.
- getPropertyNames() - Method in interface javax.ws.rs.core.Configuration
-
Returns an immutable
collection containing the
property names available within the context of the current configuration instance.
- getPropertyNames() - Method in interface javax.ws.rs.ext.InterceptorContext
-
Returns an immutable
collection containing the property
names available within the context of the current request/response exchange context.
- getPropertyNames() - Method in class org.glassfish.jersey.client.ClientConfig
-
- getPropertyNames() - Method in class org.glassfish.jersey.client.ClientRequest
-
- getPropertyNames() - Method in class org.glassfish.jersey.server.ContainerRequest
-
- getPropertyNames() - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getProviderClasses() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationMXBean
-
Get classes of registered providers.
- getProviders() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationEvent
-
Get registered providers available in the runtime.
- getProviders() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationInfo
-
Get registered providers available in the runtime.
- getQueryParameters() - Method in interface javax.ws.rs.core.UriInfo
-
Get the URI query parameters of the current request.
- getQueryParameters(boolean) - Method in interface javax.ws.rs.core.UriInfo
-
Get the URI query parameters of the current request.
- getQueryType() - Method in class com.sun.research.ws.wadl.Resource
-
Gets the value of the queryType property.
- getRawResponseType() - Method in class org.glassfish.jersey.server.model.Invocable
-
Get the resource method raw response type.
- getRawRoutingResponseType() - Method in class org.glassfish.jersey.server.model.Invocable
-
- getRawType() - Method in class javax.ws.rs.core.GenericEntity
-
Gets the raw type of the enclosed entity.
- getRawType() - Method in class javax.ws.rs.core.GenericType
-
Returns the object representing the class or interface that declared
the type represented by this generic type instance.
- getRawType() - Method in class org.glassfish.jersey.server.model.Parameter
-
Get raw type information for the parameter.
- getReaderInterceptors() - Method in class org.glassfish.jersey.client.ClientRequest
-
Get reader interceptors of this request.
- getReaderInterceptors() - Method in class org.glassfish.jersey.client.ClientResponse
-
- getReaderInterceptors() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get all reader interceptors applicable to this request.
- getReaderInterceptors() - Method in class org.glassfish.jersey.server.model.ResourceMethodInvoker
-
Get all writer interceptors applicable to the
resource method
wrapped by this invoker.
- getReaders(MediaType) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get the map of media type to list of message body writers that are compatible with
a media type.
- getReasonPhrase() - Method in enum javax.ws.rs.core.Response.Status
-
Get the reason phrase.
- getReasonPhrase() - Method in interface javax.ws.rs.core.Response.StatusType
-
Get the reason phrase.
- getRegex() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
Get regular expression of path pattern of this runtime resource.
- getRegex() - Method in class org.glassfish.jersey.uri.PatternWithGroups
-
Get the regular expression.
- getRegisteredClasses() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationEvent
-
Get resource classes registered by the user in the current application.
- getRegisteredClasses() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationInfo
-
Get resource classes registered by the user in the current application.
- getRegisteredClasses() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationMXBean
-
Get a set of string names of resource classes registered by the user.
- getRegisteredInstances() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationEvent
-
Get resource instances registered by the user in the current application.
- getRegisteredInstances() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationInfo
-
Get resource instances registered by the user in the current application.
- getRegisteredInstances() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationMXBean
-
Get a set of string names of classes of user registered instances.
- getRel() - Method in class com.sun.research.ws.wadl.Link
-
Gets the value of the rel property.
- getRel() - Method in class javax.ws.rs.core.Link
-
Returns the value associated with the link rel param, or
null if this param is not specified.
- getRels() - Method in class javax.ws.rs.core.Link
-
Returns the value associated with the link rel param as a list
of strings or the empty list if rel is not defined.
- getRepresentation() - Method in class com.sun.research.ws.wadl.Request
-
Gets the value of the representation property.
- getRepresentation() - Method in class com.sun.research.ws.wadl.Response
-
Gets the value of the representation property.
- getRequest() - Method in class com.sun.research.ws.wadl.Method
-
Gets the value of the request property.
- getRequest() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get the injectable request information.
- getRequest() - Method in class org.glassfish.jersey.server.ContainerRequest
-
- getRequestContext() - Method in class org.glassfish.jersey.client.ClientResponse
-
Get the associated client request context paired with this response context.
- getRequestContext() - Method in class org.glassfish.jersey.server.ContainerResponse
-
Get the associated container request context paired with this response context.
- getRequestCount() - Method in interface org.glassfish.jersey.server.monitoring.TimeWindowStatistics
-
Returns the count of requests received measured in the time window.
- getRequestExecutionStatistics() - Method in interface org.glassfish.jersey.server.monitoring.ResourceStatistics
-
Get
execution statistics that contain measurements of times for
whole processing from time when request comes into the Jersey application until the response
is written to the underlying IO container.
- getRequestFilters() - Method in class org.glassfish.jersey.server.model.ResourceMethodInvoker
-
Get all bound request filters applicable to the
resource method
wrapped by this invoker.
- getRequestHeader(String) - Method in interface javax.ws.rs.core.HttpHeaders
-
Get the values of a HTTP request header.
- getRequestHeader(String) - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get the values of a HTTP request header.
- getRequestHeaders() - Method in interface javax.ws.rs.core.HttpHeaders
-
Get the values of HTTP request headers.
- getRequestHeaders() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get the values of HTTP request headers.
- getRequestingExecutor() - Method in interface org.glassfish.jersey.spi.RequestExecutorProvider
-
Get request processing executor.
- getRequestScopedInitializer() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get a custom container extensions initializer for the current request.
- getRequestsPerSecond() - Method in interface org.glassfish.jersey.server.monitoring.TimeWindowStatistics
-
Returns average value of how many requests per second were received by application in the time window.
- getRequestStatistics() - Method in interface org.glassfish.jersey.server.monitoring.MonitoringStatistics
-
Get the global application statistics of request execution.
- getRequestStatistics() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodStatistics
-
Get
execution statistics that contain measurements of times for
whole processing from time when request comes into the Jersey application until the response
is written to the underlying IO container.
- getRequestThreadFactory() - Method in interface org.glassfish.jersey.spi.RuntimeThreadProvider
-
Get a ThreadFactory that will be used to create threads scoped to the current request.
- getRequestUri() - Method in interface javax.ws.rs.core.UriInfo
-
Get the absolute request URI including any query parameters.
- getRequestUri() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get request URI.
- getRequestUriBuilder() - Method in interface javax.ws.rs.core.UriInfo
-
Get the absolute request URI in the form of a UriBuilder.
- getRequiredJaxbContextPath() - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
The jaxb context path that is used when the generated wadl application is marshalled
to a file.
This method is used in a decorator like manner.
The result return the path (or a colon-separated list of package names) containing
jaxb-beans that are added to wadl elements by this WadlGenerator, additionally to
the context path of the decorated WadlGenerator (set by
WadlGenerator.setWadlGeneratorDelegate(WadlGenerator).
If you do not use custom jaxb beans, then simply return
_delegate.getRequiredJaxbContextPath(),
otherwise return the delegate's #getRequiredJaxbContextPath() together with
your required context path (separated by a colon):
- getResolvedRequestUri() - Method in class org.glassfish.jersey.client.ClientResponse
-
Get the absolute URI of the ultimate request made to receive this response.
- getResource() - Method in class com.sun.research.ws.wadl.Resources
-
Gets the value of the resource property.
- getResource(Class<T>) - Method in interface javax.ws.rs.container.ResourceContext
-
Get a resolved instance of a resource or sub-resource class.
- getResourceClass() - Method in interface javax.ws.rs.container.ResourceInfo
-
Get the resource class that is the target of a request,
or null if this information is not available.
- getResourceClass() - Method in class org.glassfish.jersey.server.model.ResourceMethodInvoker
-
- getResourceClassStatistics() - Method in interface org.glassfish.jersey.server.monitoring.MonitoringStatistics
-
Get the statistics for each resource
Class that is deployed in the application.
- getResourceConfig() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationEvent
-
Get resource config associated with the application.
- getResourceConfig() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationInfo
-
Get the resource config.
- getResourceLocator() - Method in class org.glassfish.jersey.server.model.Resource
-
Provides a resource locator available on the resource.
- getResourceLocator() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
Return the resource locator of this resource.
- getResourceLocators() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
Get resource locators of all
resources of this runtime resource.
- getResourceMethod() - Method in interface javax.ws.rs.container.ResourceInfo
-
Get the resource method that is the target of a request,
or null if this information is not available.
- getResourceMethod() - Method in class org.glassfish.jersey.server.model.ResourceMethodInvoker
-
- getResourceMethod() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodStatistics
-
- getResourceMethodExecutionStatistics() - Method in interface org.glassfish.jersey.server.monitoring.ResourceStatistics
-
- getResourceMethods() - Method in class org.glassfish.jersey.server.model.Resource
-
Provides a non-null list of resource methods available on the resource.
- getResourceMethods() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
Get resource methods (excluding resource locators) of all
resources of this runtime resource.
- getResourceMethodStatistics() - Method in interface org.glassfish.jersey.server.monitoring.ResourceStatistics
-
Return the statistics for resource method.
- getResourceModel() - Method in interface org.glassfish.jersey.server.ExtendedResourceContext
-
Return
resource model from which the current jersey application is built.
- getResourceModel() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationEvent
-
Get the resource model of the application.
- getResources() - Method in class com.sun.research.ws.wadl.Application
-
Gets the value of the resources property.
- getResources() - Method in class org.glassfish.jersey.server.model.ResourceModel
-
Return all resources from this resource model.
- getResources() - Method in class org.glassfish.jersey.server.model.RuntimeResource
-
Get resources creating this runtime resource.
- getResources() - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getResources() - Method in interface org.glassfish.jersey.server.ServerConfig
-
Get programmatically modeled resources.
- getResourceType() - Method in class com.sun.research.ws.wadl.Link
-
Gets the value of the resourceType property.
- getResourceTypeOrMethodOrRepresentation() - Method in class com.sun.research.ws.wadl.Application
-
Gets the value of the resourceTypeOrMethodOrRepresentation property.
- getResponse() - Method in class com.sun.research.ws.wadl.Method
-
Gets the value of the response property.
- getResponse() - Method in exception javax.ws.rs.client.ResponseProcessingException
-
Get the HTTP response for which the processing has failed.
- getResponse() - Method in exception javax.ws.rs.WebApplicationException
-
Get the HTTP response.
- getResponseCodes() - Method in interface org.glassfish.jersey.server.monitoring.ResponseStatistics
-
Returns statistics of response codes produces by the application.
- getResponseCodesToCountMap() - Method in interface org.glassfish.jersey.server.monitoring.ResponseMXBean
-
Returns statistics of response codes produces by the application.
- getResponseFilters() - Method in class org.glassfish.jersey.server.model.ResourceMethodInvoker
-
Get all bound response filters applicable to the
resource method
wrapped by this invoker.
- getResponseStatistics() - Method in interface org.glassfish.jersey.server.monitoring.MonitoringStatistics
-
Get global application response statistics.
- getResponseType() - Method in class org.glassfish.jersey.server.model.Invocable
-
Get the resource method generic response type information.
- getResponseWriter() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get the container response writer for the current request.
- getRetryTime(Date) - Method in exception javax.ws.rs.ServiceUnavailableException
-
Get the retry time for the failed request.
- getRev() - Method in class com.sun.research.ws.wadl.Link
-
Gets the value of the rev property.
- getRootResources() - Method in class org.glassfish.jersey.server.model.ResourceModel
-
Return root resources from this resource model.
- getRoutingResponseType() - Method in class org.glassfish.jersey.server.model.Invocable
-
Get the response type of the
Invocable.handlingMethod that will be used during
the routing for the purpose
of selection of the resource method.
- getRuntimeResourceModel() - Method in class org.glassfish.jersey.server.model.ResourceModel
-
- getRuntimeResources() - Method in class org.glassfish.jersey.server.model.RuntimeResourceModel
-
Get list of runtime resources from this model (excluding child resources which are accessible in the
returned resources).
- getRuntimeType() - Method in interface javax.ws.rs.core.Configuration
-
Get the runtime type of this configuration context.
- getRuntimeType() - Method in class org.glassfish.jersey.client.ClientConfig
-
- getRuntimeType() - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getScope() - Method in class org.glassfish.jersey.model.ContractProvider.Builder
-
Get the scope of the built contract provider model.
- getScope() - Method in class org.glassfish.jersey.model.ContractProvider
-
- getScope() - Method in interface org.glassfish.jersey.model.Scoped
-
Get model component scope.
- getSecurityContext() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get the injectable security context information for the current request.
- getSecurityContext() - Method in class org.glassfish.jersey.server.ContainerRequest
-
- getServiceLocator() - Method in class org.glassfish.jersey.client.ClientRequest
-
- getServiceLocator() - Method in class org.glassfish.jersey.client.ClientResponse
-
- getServiceLocator(ClientRequestContext) - Static method in class org.glassfish.jersey.client.ServiceLocatorClientProvider
-
- getServiceLocator(ClientResponseContext) - Static method in class org.glassfish.jersey.client.ServiceLocatorClientProvider
-
- getServiceLocator() - Method in class org.glassfish.jersey.server.ApplicationHandler
-
Returns ServiceLocator relevant to current application.
- getServiceLocator(WriterInterceptorContext) - Static method in class org.glassfish.jersey.ServiceLocatorProvider
-
- getServiceLocator(ReaderInterceptorContext) - Static method in class org.glassfish.jersey.ServiceLocatorProvider
-
- getServiceLocator(FeatureContext) - Static method in class org.glassfish.jersey.ServiceLocatorProvider
-
- getServletConfig() - Method in interface org.glassfish.jersey.servlet.WebConfig
-
Get the corresponding ServletConfig if this WebConfig represents a ServletConfig
- getServletConfig() - Method in class org.glassfish.jersey.servlet.WebFilterConfig
-
- getServletConfig() - Method in class org.glassfish.jersey.servlet.WebServletConfig
-
- getServletContext() - Method in class org.glassfish.jersey.servlet.ServletContainer
-
Get the servlet context for the servlet or filter, depending on
how this class is registered.
- getServletContext() - Method in interface org.glassfish.jersey.servlet.WebConfig
-
Get the ServletContext.
- getServletContext() - Method in class org.glassfish.jersey.servlet.WebFilterConfig
-
- getServletContext() - Method in class org.glassfish.jersey.servlet.WebServletConfig
-
- getSeverity() - Method in class org.glassfish.jersey.server.model.ResourceModelIssue
-
- getSingletons() - Method in class javax.ws.rs.core.Application
-
Get a set of root resource, provider and
feature instances.
- getSingletons() - Method in class org.glassfish.jersey.server.ResourceConfig
-
- getSize(T, Class<?>, Type, Annotation[], MediaType) - Method in interface javax.ws.rs.ext.MessageBodyWriter
-
Originally, the method has been called before writeTo to ascertain the length in bytes of
the serialized form of t.
- getSize(ChunkedOutput<?>, Class<?>, Type, Annotation[], MediaType) - Method in class org.glassfish.jersey.server.ChunkedResponseWriter
-
- getSMaxAge() - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the s-maxage cache control directive.
- getSource() - Method in class org.glassfish.jersey.server.model.Parameter
-
Get the parameter value source type.
- getSource() - Method in class org.glassfish.jersey.server.model.ResourceModelIssue
-
The issue source.
- getSourceAnnotation() - Method in class org.glassfish.jersey.server.model.Parameter
-
Get the parameter source annotation.
- getSourceName() - Method in class org.glassfish.jersey.server.model.Parameter
-
Get the parameter source name, i.e.
- getSslContext() - Method in interface javax.ws.rs.client.Client
-
Get the SSL context configured to be used with the current client run-time.
- getSslContext() - Method in class org.glassfish.jersey.client.JerseyClient
-
- getStartTime() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationInfo
-
Get the start time of the application.
- getStartTime() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationMXBean
-
Get the start time of the application (when application was initialized).
- getStaticContentPattern() - Method in class org.glassfish.jersey.servlet.ServletContainer
-
Get the static content path pattern.
- getStatus() - Method in class com.sun.research.ws.wadl.Response
-
Gets the value of the status property.
- getStatus() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the status code associated with the response.
- getStatus() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the status code associated with the response.
- getStatus() - Method in class javax.ws.rs.core.Response
-
Get the status code associated with the response.
- getStatus() - Method in class org.glassfish.jersey.client.ClientResponse
-
- getStatus() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getStatusCode() - Method in enum javax.ws.rs.core.Response.Status
-
Get the associated status code.
- getStatusCode() - Method in interface javax.ws.rs.core.Response.StatusType
-
Get the associated status code.
- getStatusInfo() - Method in interface javax.ws.rs.client.ClientResponseContext
-
Get the complete status information associated with the response.
- getStatusInfo() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get the complete status information associated with the response.
- getStatusInfo() - Method in class javax.ws.rs.core.Response
-
Get the complete status information associated with the response.
- getStatusInfo() - Method in class org.glassfish.jersey.client.ClientResponse
-
- getStatusInfo() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getStringHeaders() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get a string view of header values associated with the message.
- getStringHeaders() - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Get a string view of header values associated with the message.
- getStringHeaders() - Method in class javax.ws.rs.core.Response
-
Get view of the response headers and their string values.
- getStringHeaders() - Method in class org.glassfish.jersey.server.ContainerResponse
-
- getStyle() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the style property.
- getSubtype() - Method in class javax.ws.rs.core.MediaType
-
Getter for subtype.
- getSuccessfulMappings() - Method in interface org.glassfish.jersey.server.monitoring.ExceptionMapperMXBean
-
Get count of all successful exception mappings.
- getSuccessfulMappings() - Method in interface org.glassfish.jersey.server.monitoring.ExceptionMapperStatistics
-
Get count of all successful exception mappings.
- getSupportedEncodings() - Method in class org.glassfish.jersey.spi.ContentEncoder
-
Returns values of Content-Encoding header supported by this encoder.
- getSuspendTimeout() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
- getSuspendTimeout() - Method in interface org.glassfish.jersey.server.model.Suspendable
-
Get the suspend timeout value in the given
time unit.
- getSuspendTimeoutUnit() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
- getSuspendTimeoutUnit() - Method in interface org.glassfish.jersey.server.model.Suspendable
-
- getTemplate() - Method in class org.glassfish.jersey.uri.PathPattern
-
- getTemplate() - Method in class org.glassfish.jersey.uri.UriTemplate
-
Get the URI template as a String.
- getTemplateVariables() - Method in class org.glassfish.jersey.uri.UriTemplate
-
Get the list of template variables for the template.
- getTimeWindow() - Method in interface org.glassfish.jersey.server.monitoring.TimeWindowStatistics
-
Returns the size of time window in milliseconds.
- getTimeWindowStatistics() - Method in interface org.glassfish.jersey.server.monitoring.ExecutionStatistics
-
Returns time window statistics for available time window sizes.
- getTitle() - Method in class com.sun.research.ws.wadl.Doc
-
Gets the value of the title property.
- getTitle() - Method in class javax.ws.rs.core.Link
-
Returns the value associated with the link title param, or
null if this param is not specified.
- getTotalMappings() - Method in interface org.glassfish.jersey.server.monitoring.ExceptionMapperMXBean
-
Get count of exception mappings that were performed on exceptions.
- getTotalMappings() - Method in interface org.glassfish.jersey.server.monitoring.ExceptionMapperStatistics
-
Get count of exception mappings that were performed on exceptions.
- getType() - Method in class com.sun.research.ws.wadl.Param
-
Gets the value of the type property.
- getType() - Method in class com.sun.research.ws.wadl.Resource
-
Gets the value of the type property.
- getType() - Method in class javax.ws.rs.core.GenericEntity
-
Gets underlying Type instance.
- getType() - Method in class javax.ws.rs.core.GenericType
-
Retrieve the type represented by the generic type instance.
- getType() - Method in class javax.ws.rs.core.Link
-
Returns the value associated with the link type param, or
null if this param is not specified.
- getType() - Method in class javax.ws.rs.core.MediaType
-
Getter for primary type.
- getType() - Method in interface javax.ws.rs.ext.InterceptorContext
-
Get Java type supported by corresponding message body provider.
- getType() - Method in class org.glassfish.jersey.server.model.Parameter
-
Get generic type information for the parameter.
- getType() - Method in class org.glassfish.jersey.server.model.ResourceMethod
-
Get the JAX-RS method type.
- getType() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationEvent
-
Return the type of the event.
- getType() - Method in interface org.glassfish.jersey.server.monitoring.RequestEvent
-
Returns the
type of this event.
- getTypeParameters() - Method in class org.glassfish.jersey.server.model.AnnotatedMethod
-
Get method type parameters.
- getUnsuccessfulMappings() - Method in interface org.glassfish.jersey.server.monitoring.ExceptionMapperMXBean
-
Get count of all unsuccessful exception mappings.
- getUnsuccessfulMappings() - Method in interface org.glassfish.jersey.server.monitoring.ExceptionMapperStatistics
-
Get count of all unsuccessful exception mappings.
- getUri() - Method in interface javax.ws.rs.client.ClientRequestContext
-
Get the request URI.
- getUri() - Method in interface javax.ws.rs.client.WebTarget
-
Get the URI identifying the resource.
- getUri() - Method in class javax.ws.rs.core.Link
-
Returns the underlying URI associated with this link.
- getUri() - Method in class javax.ws.rs.core.Link.JaxbLink
-
Get the underlying URI for this link.
- getUri() - Method in class org.glassfish.jersey.client.ClientRequest
-
- getUri() - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- getUriBuilder() - Method in interface javax.ws.rs.client.WebTarget
-
Get the URI builder initialized with the
URI of the current
resource target.
- getUriBuilder() - Method in class javax.ws.rs.core.Link
-
Convenience method that returns a
UriBuilder
initialized with this link's underlying URI.
- getUriBuilder() - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- getUriInfo() - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Get request URI information.
- getUriInfo() - Method in class org.glassfish.jersey.server.ContainerRequest
-
- getUriInfo() - Method in interface org.glassfish.jersey.server.monitoring.RequestEvent
-
- getUriStatistics() - Method in interface org.glassfish.jersey.server.monitoring.MonitoringStatistics
-
Get the statistics for each URI that is exposed in the application.
- getUserPrincipal() - Method in interface javax.ws.rs.core.SecurityContext
-
Returns a java.security.Principal object containing the
name of the current authenticated user.
- getValue() - Method in class com.sun.research.ws.wadl.Option
-
Gets the value of the value property.
- getValue() - Method in class javax.ws.rs.core.Cookie
-
Get the value of the cookie.
- getValue() - Method in class javax.ws.rs.core.EntityTag
-
Get the value of an EntityTag.
- getValue(Map<String, ?>, String, T) - Static method in class org.glassfish.jersey.client.ClientProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, String, T, Class<T>) - Static method in class org.glassfish.jersey.client.ClientProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, String, Class<T>) - Static method in class org.glassfish.jersey.client.ClientProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, String, Class<?>) - Static method in class org.glassfish.jersey.CommonProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, String, T) - Static method in class org.glassfish.jersey.CommonProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, RuntimeType, String, T) - Static method in class org.glassfish.jersey.CommonProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, RuntimeType, String, T, Class<T>) - Static method in class org.glassfish.jersey.CommonProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, RuntimeType, String, Class<T>) - Static method in class org.glassfish.jersey.CommonProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, String, Class<T>) - Static method in class org.glassfish.jersey.server.ServerProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, String, T) - Static method in class org.glassfish.jersey.server.ServerProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, String, T, Class<T>) - Static method in class org.glassfish.jersey.server.ServerProperties
-
Get the value of the specified property.
- getValue(Map<String, ?>, RuntimeType, String, T, Class<T>) - Static method in class org.glassfish.jersey.server.ServerProperties
-
Get the value of the specified property.
- getValueProviders(ServiceLocator) - Method in class org.glassfish.jersey.server.model.Invocable
-
- getValues(K) - Method in class javax.ws.rs.core.AbstractMultivaluedMap
-
Return a non-null list of values for a given key.
- getVariant() - Method in class javax.ws.rs.client.Entity
-
- getVaryValue() - Method in class org.glassfish.jersey.server.ContainerRequest
-
Get the value of HTTP Vary response header to be set in the response,
or null if no value is to be set.
- getVersion() - Method in class javax.ws.rs.core.Cookie
-
Get the version of the cookie.
- getWebComponent() - Method in class org.glassfish.jersey.servlet.ServletContainer
-
- getWorkers() - Method in class org.glassfish.jersey.client.ClientRequest
-
Get the message body workers associated with the request.
- getWrappedMessageContext() - Method in class org.glassfish.jersey.server.ContainerResponse
-
Get the wrapped response message context.
- getWriterInterceptors() - Method in class org.glassfish.jersey.client.ClientRequest
-
Get writer interceptors of this request.
- getWriterInterceptors() - Method in class org.glassfish.jersey.server.model.ResourceMethodInvoker
-
Get all reader interceptors applicable to the
resource method
wrapped by this invoker.
- getWriters(MediaType) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Get the map of media type to list of message body writers that are compatible with
a media type.
- grammars - Variable in class com.sun.research.ws.wadl.Application
-
- Grammars - Class in com.sun.research.ws.wadl
-
Java class for anonymous complex type.
- Grammars() - Constructor for class com.sun.research.ws.wadl.Grammars
-
- GZipEncoder - Class in org.glassfish.jersey.message
-
GZIP encoding support.
- GZipEncoder() - Constructor for class org.glassfish.jersey.message.GZipEncoder
-
Initialize GZipEncoder.
- read() - Method in class org.glassfish.jersey.client.ChunkedInput
-
Read next chunk from the response stream and convert it to a Java instance
using the
chunk media type.
- READ_TIMEOUT - Static variable in class org.glassfish.jersey.client.ClientProperties
-
Read timeout interval, in milliseconds.
- readChunk(InputStream) - Method in interface org.glassfish.jersey.client.ChunkParser
-
- readEntity(Class<T>) - Method in class javax.ws.rs.core.Response
-
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type.
- readEntity(GenericType<T>) - Method in class javax.ws.rs.core.Response
-
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type.
- readEntity(Class<T>, Annotation[]) - Method in class javax.ws.rs.core.Response
-
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type.
- readEntity(GenericType<T>, Annotation[]) - Method in class javax.ws.rs.core.Response
-
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type.
- readEntity(Class<T>) - Method in class org.glassfish.jersey.client.ClientResponse
-
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type.
- readEntity(GenericType<T>) - Method in class org.glassfish.jersey.client.ClientResponse
-
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type.
- readEntity(Class<T>, Annotation[]) - Method in class org.glassfish.jersey.client.ClientResponse
-
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type.
- readEntity(GenericType<T>, Annotation[]) - Method in class org.glassfish.jersey.client.ClientResponse
-
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type.
- readEntity(Class<T>) - Method in class org.glassfish.jersey.server.ContainerRequest
-
Read entity from a context entity input stream.
- readEntity(Class<T>, Annotation[]) - Method in class org.glassfish.jersey.server.ContainerRequest
-
Read entity from a context entity input stream.
- readEntity(Class<T>, Type) - Method in class org.glassfish.jersey.server.ContainerRequest
-
Read entity from a context entity input stream.
- readEntity(Class<T>, Type, Annotation[]) - Method in class org.glassfish.jersey.server.ContainerRequest
-
Read entity from a context entity input stream.
- ReaderInterceptor - Interface in javax.ws.rs.ext
-
- ReaderInterceptorContext - Interface in javax.ws.rs.ext
-
Context class used by
ReaderInterceptor
to intercept calls to (@link javax.ws.rs.ext.MessageBodyReader#readFrom}.
- readersToString(Map<MediaType, List<MessageBodyReader>>) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
Convert a map media type to list of message body readers to a string.
- readFrom(Class<T>, Type, Annotation[], MediaType, MultivaluedMap<String, String>, InputStream) - Method in interface javax.ws.rs.ext.MessageBodyReader
-
- readFrom(Class<?>, Type, Annotation[], MediaType, MultivaluedMap<String, String>, PropertiesDelegate, InputStream, Iterable<ReaderInterceptor>, boolean) - Method in interface org.glassfish.jersey.message.MessageBodyWorkers
-
- RedirectionException - Exception in javax.ws.rs
-
A runtime application exception indicating a request redirection
(HTTP 3xx status codes).
- RedirectionException(Response.Status, URI) - Constructor for exception javax.ws.rs.RedirectionException
-
Construct a new redirection exception.
- RedirectionException(String, Response.Status, URI) - Constructor for exception javax.ws.rs.RedirectionException
-
Construct a new redirection exception.
- RedirectionException(int, URI) - Constructor for exception javax.ws.rs.RedirectionException
-
Construct a new redirection exception.
- RedirectionException(String, int, URI) - Constructor for exception javax.ws.rs.RedirectionException
-
Construct a new redirection exception.
- RedirectionException(Response) - Constructor for exception javax.ws.rs.RedirectionException
-
Construct a new redirection exception.
- RedirectionException(String, Response) - Constructor for exception javax.ws.rs.RedirectionException
-
Construct a new redirection exception.
- register(Class<?>) - Method in interface javax.ws.rs.container.AsyncResponse
-
Register an asynchronous processing lifecycle callback class to receive lifecycle
events for the asynchronous response based on the implemented callback interfaces.
- register(Class<?>, Class<?>...) - Method in interface javax.ws.rs.container.AsyncResponse
-
Register asynchronous processing lifecycle callback classes to receive lifecycle
events for the asynchronous response based on the implemented callback interfaces.
- register(Object) - Method in interface javax.ws.rs.container.AsyncResponse
-
Register an asynchronous processing lifecycle callback instance to receive lifecycle
events for the asynchronous response based on the implemented callback interfaces.
- register(Object, Object...) - Method in interface javax.ws.rs.container.AsyncResponse
-
Register an asynchronous processing lifecycle callback instances to receive lifecycle
events for the asynchronous response based on the implemented callback interfaces.
- register(Class<?>) - Method in interface javax.ws.rs.core.Configurable
-
Register a class of a custom JAX-RS component (such as an extension provider or
a
feature meta-provider) to be instantiated
and used in the scope of this configurable context.
- register(Class<?>, int) - Method in interface javax.ws.rs.core.Configurable
-
Register a class of a custom JAX-RS component (such as an extension provider or
a
feature meta-provider) to be instantiated
and used in the scope of this configurable context.
- register(Class<?>, Class<?>...) - Method in interface javax.ws.rs.core.Configurable
-
Register a class of a custom JAX-RS component (such as an extension provider or
a
feature meta-provider) to be instantiated
and used in the scope of this configurable context.
- register(Class<?>, Map<Class<?>, Integer>) - Method in interface javax.ws.rs.core.Configurable
-
Register a class of a custom JAX-RS component (such as an extension provider or
a
feature meta-provider) to be instantiated
and used in the scope of this configurable context.
- register(Object) - Method in interface javax.ws.rs.core.Configurable
-
Register an instance of a custom JAX-RS component (such as an extension provider or
a
feature meta-provider) to be instantiated
and used in the scope of this configurable context.
- register(Object, int) - Method in interface javax.ws.rs.core.Configurable
-
Register an instance of a custom JAX-RS component (such as an extension provider or
a
feature meta-provider) to be instantiated
and used in the scope of this configurable context.
- register(Object, Class<?>...) - Method in interface javax.ws.rs.core.Configurable
-
Register an instance of a custom JAX-RS component (such as an extension provider or
a
feature meta-provider) to be instantiated
and used in the scope of this configurable context.
- register(Object, Map<Class<?>, Integer>) - Method in interface javax.ws.rs.core.Configurable
-
Register an instance of a custom JAX-RS component (such as an extension provider or
a
feature meta-provider) to be instantiated
and used in the scope of this configurable context.
- register(Class<?>) - Method in class org.glassfish.jersey.client.ClientConfig
-
- register(Object) - Method in class org.glassfish.jersey.client.ClientConfig
-
- register(Class<?>, int) - Method in class org.glassfish.jersey.client.ClientConfig
-
- register(Class<?>, Class<?>...) - Method in class org.glassfish.jersey.client.ClientConfig
-
- register(Class<?>, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.client.ClientConfig
-
- register(Object, int) - Method in class org.glassfish.jersey.client.ClientConfig
-
- register(Object, Class<?>...) - Method in class org.glassfish.jersey.client.ClientConfig
-
- register(Object, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.client.ClientConfig
-
- register(Class<?>) - Method in class org.glassfish.jersey.client.JerseyClient
-
- register(Object) - Method in class org.glassfish.jersey.client.JerseyClient
-
- register(Class<?>, int) - Method in class org.glassfish.jersey.client.JerseyClient
-
- register(Class<?>, Class<?>...) - Method in class org.glassfish.jersey.client.JerseyClient
-
- register(Class<?>, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.client.JerseyClient
-
- register(Object, int) - Method in class org.glassfish.jersey.client.JerseyClient
-
- register(Object, Class<?>...) - Method in class org.glassfish.jersey.client.JerseyClient
-
- register(Object, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.client.JerseyClient
-
- register(Class<?>) - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- register(Class<?>, int) - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- register(Class<?>, Class<?>...) - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- register(Class<?>, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- register(Object) - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- register(Object, int) - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- register(Object, Class<?>...) - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- register(Object, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- register(Class<?>) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- register(Object) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- register(Class<?>, int) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- register(Class<?>, Class<?>...) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- register(Class<?>, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- register(Object, int) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- register(Object, Class<?>...) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- register(Object, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- register(Class<?>) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- register(Class<?>, int) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- register(Class<?>, Class<?>...) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- register(Class<?>, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- register(Object) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- register(Object, int) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- register(Object, Class<?>...) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- register(Object, Map<Class<?>, Integer>) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- registerClasses(Set<Class<?>>) - Method in class org.glassfish.jersey.server.ResourceConfig
-
Register annotated JAX-RS resource, JAX-RS or Jersey contract provider or JAX-RS feature
in the ResourceConfig.
- registerClasses(Class<?>...) - Method in class org.glassfish.jersey.server.ResourceConfig
-
Register annotated JAX-RS resource, JAX-RS or Jersey contract provider or JAX-RS feature
in the ResourceConfig.
- registerFinder(ResourceFinder) - Method in class org.glassfish.jersey.server.ResourceConfig
-
- registerInstances(Set<Object>) - Method in class org.glassfish.jersey.server.ResourceConfig
-
Register annotated JAX-RS resource, JAX-RS or Jersey contract provider, JAX-RS feature
or HK2 binder instances (singletons) in the ResourceConfig.
- registerInstances(Object...) - Method in class org.glassfish.jersey.server.ResourceConfig
-
Register annotated JAX-RS resource, JAX-RS or Jersey contract provider, JAX-RS feature
or HK2 binder instances (singletons) in the ResourceConfig.
- registerResources(Resource...) - Method in class org.glassfish.jersey.server.ResourceConfig
-
Register new programmatic resource models in the ResourceConfig.
- registerResources(Set<Resource>) - Method in class org.glassfish.jersey.server.ResourceConfig
-
Register new resource models in the ResourceConfig.
- rel - Variable in class com.sun.research.ws.wadl.Link
-
- rel(String) - Method in interface javax.ws.rs.core.Link.Builder
-
Convenience method to set a link relation.
- REL - Static variable in class javax.ws.rs.core.Link
-
Rel link param from RFC 5988.
- relativize(URI) - Method in interface javax.ws.rs.core.UriInfo
-
Relativize a URI with respect to the current request URI.
- relativize(URI, URI) - Static method in class org.glassfish.jersey.uri.UriTemplate
-
Relativize URI with respect to a base URI.
- releaseRequestingExecutor(ExecutorService) - Method in interface org.glassfish.jersey.spi.RequestExecutorProvider
-
- reload() - Method in interface org.glassfish.jersey.server.spi.Container
-
Reload the hosted Jersey application using the current
configuration.
- reload(ResourceConfig) - Method in interface org.glassfish.jersey.server.spi.Container
-
- reload() - Method in class org.glassfish.jersey.servlet.ServletContainer
-
- reload(ResourceConfig) - Method in class org.glassfish.jersey.servlet.ServletContainer
-
- remove(Object) - Method in class javax.ws.rs.core.AbstractMultivaluedMap
-
- remove(OUT) - Method in class org.glassfish.jersey.server.Broadcaster
-
- remove(BroadcasterListener<T>) - Method in class org.glassfish.jersey.server.Broadcaster
-
- remove() - Method in interface org.glassfish.jersey.server.ResourceFinder
-
- removeProperty(String) - Method in interface javax.ws.rs.client.ClientRequestContext
-
Removes a property with the given name from the current request/response
exchange context.
- removeProperty(String) - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Removes a property with the given name from the current request/response
exchange context.
- removeProperty(String) - Method in interface javax.ws.rs.ext.InterceptorContext
-
Removes a property with the given name from the current request/response
exchange context.
- removeProperty(String) - Method in class org.glassfish.jersey.client.ClientRequest
-
- removeProperty(String) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- repeating - Variable in class com.sun.research.ws.wadl.Param
-
- replaceAll(MultivaluedMap<String, Object>) - Method in class javax.ws.rs.core.Response.ResponseBuilder
-
Replaces all existing headers with the newly supplied headers.
- replaceMatrix(String) - Method in class javax.ws.rs.core.UriBuilder
-
Set the matrix parameters of the current final segment of the current URI path.
- replaceMatrixParam(String, Object...) - Method in class javax.ws.rs.core.UriBuilder
-
Replace the existing value(s) of a matrix parameter on
the current final segment of the URI path.
- replacePath(String) - Method in class javax.ws.rs.core.UriBuilder
-
Set the URI path.
- replaceQuery(String) - Method in class javax.ws.rs.core.UriBuilder
-
Set the URI query string.
- replaceQueryParam(String, Object...) - Method in class javax.ws.rs.core.UriBuilder
-
Replace the existing value(s) of a query parameter.
- Representation - Class in com.sun.research.ws.wadl
-
Java class for anonymous complex type.
- Representation() - Constructor for class com.sun.research.ws.wadl.Representation
-
- representation - Variable in class com.sun.research.ws.wadl.Request
-
- representation - Variable in class com.sun.research.ws.wadl.Response
-
- request - Variable in class com.sun.research.ws.wadl.Method
-
- Request - Class in com.sun.research.ws.wadl
-
Java class for anonymous complex type.
- Request() - Constructor for class com.sun.research.ws.wadl.Request
-
- request() - Method in interface javax.ws.rs.client.WebTarget
-
Start building a request to the targeted web resource.
- request(String...) - Method in interface javax.ws.rs.client.WebTarget
-
Start building a request to the targeted web resource and define the accepted
response media types.
- request(MediaType...) - Method in interface javax.ws.rs.client.WebTarget
-
Start building a request to the targeted web resource and define the accepted
response media types.
- Request - Interface in javax.ws.rs.core
-
An injectable helper for request processing, all methods throw an
IllegalStateException if called outside the scope of a request
(e.g.
- request() - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- request(String...) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- request(MediaType...) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- REQUEST_ENTITY_PROCESSING - Static variable in class org.glassfish.jersey.client.ClientProperties
-
The property specified how the entity should be serialized to the output stream by the
connector; if the buffering
should be used or the entity is streamed in chunked encoding.
- RequestEntityProcessing - Enum in org.glassfish.jersey.client
-
- RequestEvent - Interface in org.glassfish.jersey.server.monitoring
-
An event informing about details of a request processing.
- RequestEvent.ExceptionCause - Enum in org.glassfish.jersey.server.monitoring
-
Describes the origin of the exception.
- RequestEvent.Type - Enum in org.glassfish.jersey.server.monitoring
-
The type of the event which describes in which request processing phase the event
is triggered.
- RequestEventListener - Interface in org.glassfish.jersey.server.monitoring
-
- RequestExecutorProvider - Interface in org.glassfish.jersey.spi
-
Pluggable provider of
executor service instance used to run
different parts of Jersey request and response processing code.
- RequestProcessingInitializationStage - Class in org.glassfish.jersey.client
-
Function that can be put to an acceptor chain to properly initialize
the client-side request-scoped processing injection for the current
request and response exchange.
- RequestProcessingInitializationStage(Provider<Ref<ClientRequest>>, Provider<MessageBodyWorkers>, ServiceLocator) - Constructor for class org.glassfish.jersey.client.RequestProcessingInitializationStage
-
- RequestScopedInitializer - Interface in org.glassfish.jersey.server.spi
-
Custom initialization provider that is guaranteed to be run from within an active
request scope.
- required - Variable in class com.sun.research.ws.wadl.Param
-
- requiresEntity() - Method in class org.glassfish.jersey.server.model.HandlerConstructor
-
- requiresEntity() - Method in class org.glassfish.jersey.server.model.Invocable
-
- requiresEntity() - Method in interface org.glassfish.jersey.server.model.Parameterized
-
Provides information on presence of an entity parameter.
- reset() - Method in interface org.glassfish.jersey.server.ResourceFinder
-
- resolve(URI) - Method in interface javax.ws.rs.core.UriInfo
-
Resolve a relative URI with respect to the base URI of the application.
- resolve(Class) - Method in class org.glassfish.jersey.server.wadl.WadlGenerator.ExternalGrammarDefinition
-
- resolve(Class) - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator.Resolver
-
- resolve(Type, MediaType) - Method in interface org.glassfish.jersey.spi.ContextResolvers
-
- resolve(URI, String) - Static method in class org.glassfish.jersey.uri.UriTemplate
-
Resolve a relative URI reference against a base URI as defined in
RFC 3986.
- resolve(URI, URI) - Static method in class org.glassfish.jersey.uri.UriTemplate
-
Resolve a relative URI reference against a base URI as defined in
RFC 3986.
- resolveProperty(String, Class<T>) - Method in class org.glassfish.jersey.client.ClientRequest
-
Resolve a property value for the specified property name.
- resolveProperty(String, T) - Method in class org.glassfish.jersey.client.ClientRequest
-
Resolve a property value for the specified property name.
- resolveTemplate(String, Object) - Method in interface javax.ws.rs.client.WebTarget
-
Create a new WebTarget instance by resolving a URI template with a given name
in the URI of the current target instance using a supplied value.
- resolveTemplate(String, Object, boolean) - Method in interface javax.ws.rs.client.WebTarget
-
Create a new WebTarget instance by resolving a URI template with a given name
in the URI of the current target instance using a supplied value.
- resolveTemplate(String, Object) - Method in class javax.ws.rs.core.UriBuilder
-
Resolve a URI template with a given name in this UriBuilder instance
using a supplied value.
- resolveTemplate(String, Object, boolean) - Method in class javax.ws.rs.core.UriBuilder
-
Resolve a URI template with a given name in this UriBuilder instance
using a supplied value.
- resolveTemplate(String, Object) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- resolveTemplate(String, Object, boolean) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- resolveTemplateFromEncoded(String, Object) - Method in interface javax.ws.rs.client.WebTarget
-
Create a new WebTarget instance by resolving a URI template with a given name
in the URI of the current target instance using a supplied encoded value.
- resolveTemplateFromEncoded(String, Object) - Method in class javax.ws.rs.core.UriBuilder
-
Resolve a URI template with a given name in this UriBuilder instance
using a supplied encoded value.
- resolveTemplateFromEncoded(String, Object) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- resolveTemplates(Map<String, Object>) - Method in interface javax.ws.rs.client.WebTarget
-
Create a new WebTarget instance by resolving one or more URI templates
in the URI of the current target instance using supplied name-value pairs.
- resolveTemplates(Map<String, Object>, boolean) - Method in interface javax.ws.rs.client.WebTarget
-
Create a new WebTarget instance by resolving one or more URI templates
in the URI of the current target instance using supplied name-value pairs.
- resolveTemplates(Map<String, Object>) - Method in class javax.ws.rs.core.UriBuilder
-
Resolve one or more URI templates in this UriBuilder instance using supplied
name-value pairs.
- resolveTemplates(Map<String, Object>, boolean) - Method in class javax.ws.rs.core.UriBuilder
-
Resolve one or more URI templates in this UriBuilder instance using supplied
name-value pairs.
- resolveTemplates(Map<String, Object>) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- resolveTemplates(Map<String, Object>, boolean) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- resolveTemplatesFromEncoded(Map<String, Object>) - Method in interface javax.ws.rs.client.WebTarget
-
Create a new WebTarget instance by resolving one or more URI templates
in the URI of the current target instance using supplied name-encoded value pairs.
- resolveTemplatesFromEncoded(Map<String, Object>) - Method in class javax.ws.rs.core.UriBuilder
-
Resolve one or more URI templates in this UriBuilder instance using supplied
name-value pairs.
- resolveTemplatesFromEncoded(Map<String, Object>) - Method in class org.glassfish.jersey.client.JerseyWebTarget
-
- resolveTemplateValues(UriComponent.Type, String, boolean, Map<String, ?>) - Static method in class org.glassfish.jersey.uri.UriTemplate
-
Resolves template variables in the given template from _mapValues.
- Resource - Class in com.sun.research.ws.wadl
-
Java class for anonymous complex type.
- Resource() - Constructor for class com.sun.research.ws.wadl.Resource
-
- resource - Variable in class com.sun.research.ws.wadl.Resources
-
- Resource - Class in org.glassfish.jersey.server.model
-
Model of a single resource component.
- Resource.Builder - Class in org.glassfish.jersey.server.model
-
Resource model component builder.
- RESOURCE_VALIDATION_DISABLE - Static variable in class org.glassfish.jersey.server.ServerProperties
-
If true then the extensive validation of application resource model is disabled.
- RESOURCE_VALIDATION_IGNORE_ERRORS - Static variable in class org.glassfish.jersey.server.ServerProperties
-
If true then validation of application resource models does not fail even in case of a fatal
validation errors.
- ResourceConfig - Class in org.glassfish.jersey.server
-
The resource configuration for configuring a web application.
- ResourceConfig() - Constructor for class org.glassfish.jersey.server.ResourceConfig
-
Create a new resource configuration without any custom properties or
resource and provider classes.
- ResourceConfig(Set<Class<?>>) - Constructor for class org.glassfish.jersey.server.ResourceConfig
-
Create a new resource configuration initialized with a given set of
resource/provider classes.
- ResourceConfig(Class<?>...) - Constructor for class org.glassfish.jersey.server.ResourceConfig
-
Create a new resource configuration initialized with a given set of
resource/provider classes.
- ResourceConfig(ResourceConfig) - Constructor for class org.glassfish.jersey.server.ResourceConfig
-
Create a defensive resource configuration copy initialized with a given ResourceConfig.
- ResourceContext - Interface in javax.ws.rs.container
-
The resource context provides access to instances of resource classes.
- ResourceFinder - Interface in org.glassfish.jersey.server
-
An interface used for finding and opening (loading) new resources.
- ResourceInfo - Interface in javax.ws.rs.container
-
An injectable class to access the resource class and resource method
matched by the current request.
- ResourceMethod - Class in org.glassfish.jersey.server.model
-
Model of a method available on a resource.
- ResourceMethod.Builder - Class in org.glassfish.jersey.server.model
-
Resource method model builder.
- ResourceMethod.JaxrsType - Enum in org.glassfish.jersey.server.model
-
Resource method classification based on the recognized JAX-RS
resource method types.
- ResourceMethodInvoker - Class in org.glassfish.jersey.server.model
-
Server-side request-response
inflector for invoking methods
of annotation-based resource classes.
- ResourceMethodInvoker.Builder - Class in org.glassfish.jersey.server.model
-
Resource method invoker "assisted" injection helper.
- ResourceMethodMXBean - Interface in org.glassfish.jersey.server.monitoring
-
MXBean interface of resource method MXBeans.
- ResourceMethodStatistics - Interface in org.glassfish.jersey.server.monitoring
-
Monitoring statistics an of an execution of the resource method.
- ResourceModel - Class in org.glassfish.jersey.server.model
-
Resource model of the deployed application which contains set of root resources.
- ResourceModel.Builder - Class in org.glassfish.jersey.server.model
-
- ResourceModelComponent - Interface in org.glassfish.jersey.server.model
-
Marker interface for all abstract resource model components,
so that they can be traversed using a visitor pattern.
- ResourceModelIssue - Class in org.glassfish.jersey.server.model
-
Resource model validity issue.
- ResourceModelIssue(Object, String) - Constructor for class org.glassfish.jersey.server.model.ResourceModelIssue
-
Create a new resource model warning.
- ResourceModelIssue(Object, String, Severity) - Constructor for class org.glassfish.jersey.server.model.ResourceModelIssue
-
Create a new resource model issue.
- ResourceModelVisitor - Interface in org.glassfish.jersey.server.model
-
Following the visitor pattern, this interface allows implementing processors
traversing all abstract model components present in a given model.
- ResourceMXBean - Interface in org.glassfish.jersey.server.monitoring
-
MXBean interface of resource MXBeans.
- resources - Variable in class com.sun.research.ws.wadl.Application
-
- Resources - Class in com.sun.research.ws.wadl
-
Java class for anonymous complex type.
- Resources() - Constructor for class com.sun.research.ws.wadl.Resources
-
- ResourceStatistics - Interface in org.glassfish.jersey.server.monitoring
-
Monitoring statistics of the resource.
- resourceType - Variable in class com.sun.research.ws.wadl.Link
-
- ResourceType - Class in com.sun.research.ws.wadl
-
Java class for anonymous complex type.
- ResourceType() - Constructor for class com.sun.research.ws.wadl.ResourceType
-
- resourceTypeOrMethodOrRepresentation - Variable in class com.sun.research.ws.wadl.Application
-
- response - Variable in class com.sun.research.ws.wadl.Method
-
- Response - Class in com.sun.research.ws.wadl
-
Java class for anonymous complex type.
- Response() - Constructor for class com.sun.research.ws.wadl.Response
-
- Response - Class in javax.ws.rs.core
-
Defines the contract between a returned instance and the runtime when
an application needs to provide meta-data to the runtime.
- Response() - Constructor for class javax.ws.rs.core.Response
-
Protected constructor, use one of the static methods to obtain a
Response.ResponseBuilder instance and obtain a Response from that.
- response(ClientResponse) - Method in interface org.glassfish.jersey.client.spi.AsyncConnectorCallback
-
Invoked when a response for the asynchronously invoked request is available.
- Response.ResponseBuilder - Class in javax.ws.rs.core
-
A class used to build Response instances that contain metadata instead
of or in addition to an entity.
- Response.Status - Enum in javax.ws.rs.core
-
- Response.Status.Family - Enum in javax.ws.rs.core
-
An enumeration representing the class of status code.
- Response.StatusType - Interface in javax.ws.rs.core
-
Base interface for statuses used in responses.
- RESPONSE_SET_STATUS_OVER_SEND_ERROR - Static variable in class org.glassfish.jersey.server.ServerProperties
-
Whenever response status is 4xx or 5xx it is possible to choose between sendError or
setStatus on container specific Response implementation.
- ResponseBuilder() - Constructor for class javax.ws.rs.core.Response.ResponseBuilder
-
Protected constructor, use one of the static methods of
Response to obtain an instance.
- ResponseErrorMapper - Interface in org.glassfish.jersey.server.spi
-
Contract for a provider that maps response processing errors to
Response.
- ResponseMXBean - Interface in org.glassfish.jersey.server.monitoring
-
MXBean interface of response MXBean.
- ResponseProcessingException - Exception in javax.ws.rs.client
-
JAX-RS client-side runtime processing exception thrown to indicate that
response processing has failed (e.g.
- ResponseProcessingException(Response, Throwable) - Constructor for exception javax.ws.rs.client.ResponseProcessingException
-
Constructs a new JAX-RS runtime response processing exception
for a specific
response with the specified cause
and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause).
- ResponseProcessingException(Response, String, Throwable) - Constructor for exception javax.ws.rs.client.ResponseProcessingException
-
Constructs a new JAX-RS runtime response processing exception with the specified detail
message and cause.
- ResponseProcessingException(Response, String) - Constructor for exception javax.ws.rs.client.ResponseProcessingException
-
Constructs a new JAX-RS runtime processing exception with the specified detail
message.
- ResponseStatistics - Interface in org.glassfish.jersey.server.monitoring
-
Monitoring statistics of responses produced by application.
- resume(Object) - Method in interface javax.ws.rs.container.AsyncResponse
-
Resume the suspended request processing using the provided response data.
- resume(Throwable) - Method in interface javax.ws.rs.container.AsyncResponse
-
Resume the suspended request processing using the provided throwable.
- resume(ExternalRequestContext<T>) - Method in interface org.glassfish.jersey.server.spi.ExternalRequestScope
-
Resume request associated with provided context.
- retrieve(Properties) - Method in class org.glassfish.jersey.SslConfigurator
-
Retrieve the SSL context configuration from the supplied properties.
- RETRY_AFTER - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- rev - Variable in class com.sun.research.ws.wadl.Link
-
- RolesAllowedDynamicFeature - Class in org.glassfish.jersey.server.filter
-
A
DynamicFeature supporting the
javax.annotation.security.RolesAllowed,
javax.annotation.security.PermitAll and
javax.annotation.security.DenyAll
on resource methods and sub-resource methods.
- RolesAllowedDynamicFeature() - Constructor for class org.glassfish.jersey.server.filter.RolesAllowedDynamicFeature
-
- Routed - Interface in org.glassfish.jersey.server.model
-
Marker interface for all resource model components that contain path information
usable for routing.
- routingResponseType(Type) - Method in class org.glassfish.jersey.server.model.ResourceMethod.Builder
-
Define the response entity type used during the routing for
selection of the resource methods.
- RuntimeDelegate - Class in javax.ws.rs.ext
-
Implementations of JAX-RS provide a concrete subclass of RuntimeDelegate and
various JAX-RS API methods defer to methods of RuntimeDelegate for their
functionality.
- RuntimeDelegate() - Constructor for class javax.ws.rs.ext.RuntimeDelegate
-
Allows custom implementations to extend the RuntimeDelegate class.
- RuntimeDelegate.HeaderDelegate<T> - Interface in javax.ws.rs.ext
-
Defines the contract for a delegate that is responsible for
converting between the String form of a HTTP header and
the corresponding JAX-RS type T.
- RuntimeResource - Class in org.glassfish.jersey.server.model
-
Runtime resource is a group of
resources with the same
path
regular expression.
- RuntimeResourceModel - Class in org.glassfish.jersey.server.model
-
Runtime Resource model contains structured information about runtime resources.
- RuntimeResourceModel(List<Resource>) - Constructor for class org.glassfish.jersey.server.model.RuntimeResourceModel
-
Creates new runtime resource model from the list of resources.
- RuntimeResourceModelValidator - Class in org.glassfish.jersey.server.model
-
Runtime resource model validator validating ambiguity of resource methods.
- RuntimeResourceModelValidator(MessageBodyWorkers) - Constructor for class org.glassfish.jersey.server.model.RuntimeResourceModelValidator
-
Create a new validator instance.
- RuntimeThreadProvider - Interface in org.glassfish.jersey.spi
-
An extension contract for providing pluggable thread factory providers that produce thread
factories used by Jersey runtime whenever a new thread factory is needed to create Jersey
runtime threads.
- RuntimeType - Enum in javax.ws.rs
-
Enumeration of JAX-RS runtime types.
- scheme(String) - Method in class javax.ws.rs.core.UriBuilder
-
Set the URI scheme.
- schemeSpecificPart(String) - Method in class javax.ws.rs.core.UriBuilder
-
Set the URI scheme-specific-part (see
URI).
- scope(Class<? extends Annotation>) - Method in class org.glassfish.jersey.model.ContractProvider.Builder
-
Change contract provider scope.
- Scoped - Interface in org.glassfish.jersey.model
-
Scoped Jersey application model component.
- SecurityContext - Interface in javax.ws.rs.core
-
An injectable interface that provides access to security related
information.
- securityProtocol(String) - Method in class org.glassfish.jersey.SslConfigurator
-
Set the SSLContext protocol.
- seeOther(URI) - Static method in class javax.ws.rs.core.Response
-
Create a new ResponseBuilder for a redirection.
- segment(String...) - Method in class javax.ws.rs.core.UriBuilder
-
Append path segments to the existing path.
- selectVariant(List<Variant>) - Method in interface javax.ws.rs.core.Request
-
Select the representation variant that best matches the request.
- selectVariant(List<Variant>) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- ServerConfig - Interface in org.glassfish.jersey.server
-
Server-side application configuration.
- serverError() - Static method in class javax.ws.rs.core.Response
-
Create a new ResponseBuilder with an server error status.
- ServerErrorException - Exception in javax.ws.rs
-
A base runtime application exception indicating a server error
(HTTP 5xx status codes).
- ServerErrorException(Response.Status) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(String, Response.Status) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(int) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(String, int) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(Response) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(String, Response) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(Response.Status, Throwable) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(String, Response.Status, Throwable) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(int, Throwable) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(String, int, Throwable) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(Response, Throwable) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerErrorException(String, Response, Throwable) - Constructor for exception javax.ws.rs.ServerErrorException
-
Construct a new server error exception.
- ServerProperties - Class in org.glassfish.jersey.server
-
Jersey server-side configuration properties.
- ServerRuntime - Class in org.glassfish.jersey.server
-
Server-side request processing runtime.
- ServerRuntime.Builder - Class in org.glassfish.jersey.server
-
Server-side request processing runtime builder.
- service(ServletRequest, ServletResponse) - Method in class org.glassfish.jersey.servlet.ServletContainer
-
Dispatches client requests to the protected
service method.
- service(HttpServletRequest, HttpServletResponse) - Method in class org.glassfish.jersey.servlet.ServletContainer
-
Receives standard HTTP requests from the public service method and dispatches
them to the doXXX methods defined in
this class.
- service(URI, URI, HttpServletRequest, HttpServletResponse) - Method in class org.glassfish.jersey.servlet.ServletContainer
-
Dispatch client requests to a resource class.
- service(URI, URI, HttpServletRequest, HttpServletResponse) - Method in class org.glassfish.jersey.servlet.WebComponent
-
Dispatch client requests to a resource class.
- SERVICE_LOCATOR - Static variable in class org.glassfish.jersey.servlet.ServletProperties
-
Identifies the object that will be used as a parent
ServiceLocator in the Jersey
WebComponent.
- ServiceLocatorClientProvider - Class in org.glassfish.jersey.client
-
Extension of
ServiceLocatorProvider which contains helper static methods
that extract
ServiceLocator from client specific JAX-RS components.
- ServiceLocatorClientProvider() - Constructor for class org.glassfish.jersey.client.ServiceLocatorClientProvider
-
- ServiceLocatorProvider - Class in org.glassfish.jersey
-
Utility class with static methods that extract service locator
from various JAX-RS components.
- ServiceLocatorProvider() - Constructor for class org.glassfish.jersey.ServiceLocatorProvider
-
- ServiceUnavailableException - Exception in javax.ws.rs
-
- ServiceUnavailableException() - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception without any "Retry-After" information
specified for the failed request.
- ServiceUnavailableException(String) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception without any "Retry-After" information
specified for the failed request.
- ServiceUnavailableException(Long) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception with an interval specifying
the "Retry-After" information for the failed request.
- ServiceUnavailableException(String, Long) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception with an interval specifying
the "Retry-After" information for the failed request.
- ServiceUnavailableException(Date) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception with an interval specifying
the "Retry-After" information for the failed request.
- ServiceUnavailableException(String, Date) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception with an interval specifying
the "Retry-After" information for the failed request.
- ServiceUnavailableException(Response) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception.
- ServiceUnavailableException(String, Response) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception.
- ServiceUnavailableException(Date, Throwable) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception with a date specifying
the "Retry-After" information for the failed request and an underlying
request failure cause.
- ServiceUnavailableException(String, Date, Throwable) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception with a date specifying
the "Retry-After" information for the failed request and an underlying
request failure cause.
- ServiceUnavailableException(Long, Throwable) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception with an interval specifying
the "Retry-After" information for the failed request and an underlying
request failure cause.
- ServiceUnavailableException(String, Long, Throwable) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception with an interval specifying
the "Retry-After" information for the failed request and an underlying
request failure cause.
- ServiceUnavailableException(Response, Throwable) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception.
- ServiceUnavailableException(String, Response, Throwable) - Constructor for exception javax.ws.rs.ServiceUnavailableException
-
Construct a new "service unavailable" exception.
- ServletContainer - Class in org.glassfish.jersey.servlet
-
A Servlet or Filter for deploying root resource classes.
- ServletContainer() - Constructor for class org.glassfish.jersey.servlet.ServletContainer
-
Create Jersey Servlet container.
- ServletContainer(ResourceConfig) - Constructor for class org.glassfish.jersey.servlet.ServletContainer
-
Create Jersey Servlet container.
- ServletProperties - Class in org.glassfish.jersey.servlet
-
Jersey servlet container configuration properties.
- SET_COOKIE - Static variable in interface javax.ws.rs.core.HttpHeaders
-
- SET_METHOD_WORKAROUND - Static variable in class org.glassfish.jersey.client.HttpUrlConnectorProvider
-
A value of
true declares that the client will try to set
unsupported HTTP method to
HttpURLConnection via
reflection.
- setAnnotations(Annotation[]) - Method in interface javax.ws.rs.ext.InterceptorContext
-
Update annotations on the formal declaration of the artifact that
initiated the intercepted entity provider invocation.
- setApplicationName(String) - Method in class org.glassfish.jersey.server.ResourceConfig
-
Set the name of the application.
- setBase(String) - Method in class com.sun.research.ws.wadl.Resources
-
Sets the value of the base property.
- setChunkType(MediaType) - Method in class org.glassfish.jersey.client.ChunkedInput
-
Set custom chunk data media type.
- setChunkType(String) - Method in class org.glassfish.jersey.client.ChunkedInput
-
Set custom chunk data media type from a string value.
- setClassLoader(ClassLoader) - Method in class org.glassfish.jersey.server.ResourceConfig
-
Set
ClassLoader which will be used for resource discovery.
- setDefault(String) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the default property.
- setElement(QName) - Method in class com.sun.research.ws.wadl.Representation
-
Sets the value of the element property.
- setEntity(Object) - Method in interface javax.ws.rs.client.ClientRequestContext
-
Set a new message entity.
- setEntity(Object, Annotation[], MediaType) - Method in interface javax.ws.rs.client.ClientRequestContext
-
Set a new message entity, including the attached annotations and the media type.
- setEntity(Object) - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Set a new message entity.
- setEntity(Object, Annotation[], MediaType) - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Set a new message entity, including the attached annotations and the media type.
- setEntity(Object) - Method in interface javax.ws.rs.ext.WriterInterceptorContext
-
Update object to be written as HTTP entity.
- setEntity(Object) - Method in class org.glassfish.jersey.server.ContainerResponse
-
Set a new message message entity.
- setEntity(Object, Annotation[]) - Method in class org.glassfish.jersey.server.ContainerResponse
-
Set a new message message entity.
- setEntity(Object, Type, Annotation[]) - Method in class org.glassfish.jersey.server.ContainerResponse
-
Set a new message message entity.
- setEntity(Object, Annotation[], MediaType) - Method in class org.glassfish.jersey.server.ContainerResponse
-
- setEntityAnnotations(Annotation[]) - Method in class org.glassfish.jersey.server.ContainerResponse
-
Set the annotations attached to the entity.
- setEntityStream(OutputStream) - Method in interface javax.ws.rs.client.ClientRequestContext
-
Set a new entity output stream.
- setEntityStream(InputStream) - Method in interface javax.ws.rs.client.ClientResponseContext
-
Set a new entity input stream.
- setEntityStream(InputStream) - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Set a new entity input stream.
- setEntityStream(OutputStream) - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Set a new entity output stream.
- setEntityStream(InputStream) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- setEntityStream(OutputStream) - Method in class org.glassfish.jersey.server.ContainerResponse
-
- setEntityType(Type) - Method in class org.glassfish.jersey.server.ContainerResponse
-
Set the message entity type information.
- setFixed(String) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the fixed property.
- setGeneratorClass(Class<? extends WadlGenerator>) - Method in class org.glassfish.jersey.server.wadl.config.WadlGeneratorDescription
-
- setGenericType(Type) - Method in interface javax.ws.rs.ext.InterceptorContext
-
Update type of the object to be produced or written.
- setGrammars(Grammars) - Method in class com.sun.research.ws.wadl.Application
-
Sets the value of the grammars property.
- setHref(String) - Method in class com.sun.research.ws.wadl.Include
-
Sets the value of the href property.
- setHref(String) - Method in class com.sun.research.ws.wadl.Method
-
Sets the value of the href property.
- setHref(String) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the href property.
- setHref(String) - Method in class com.sun.research.ws.wadl.Representation
-
Sets the value of the href property.
- setId(String) - Method in class com.sun.research.ws.wadl.Method
-
Sets the value of the id property.
- setId(String) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the id property.
- setId(String) - Method in class com.sun.research.ws.wadl.Representation
-
Sets the value of the id property.
- setId(String) - Method in class com.sun.research.ws.wadl.Resource
-
Sets the value of the id property.
- setId(String) - Method in class com.sun.research.ws.wadl.ResourceType
-
Sets the value of the id property.
- setInputStream(InputStream) - Method in interface javax.ws.rs.ext.ReaderInterceptorContext
-
Set the input stream of the object to be read.
- setInstance(RuntimeDelegate) - Static method in class javax.ws.rs.ext.RuntimeDelegate
-
Set the runtime delegate that will be used by JAX-RS classes.
- setLang(String) - Method in class com.sun.research.ws.wadl.Doc
-
Sets the value of the lang property.
- setLink(Link) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the link property.
- setMappedFromException(boolean) - Method in class org.glassfish.jersey.server.ContainerResponse
-
Sets the flag indicating whether the response was created based on the exception.
- setMaxAge(int) - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the max-age cache control directive.
- setMediaType(String) - Method in class com.sun.research.ws.wadl.Option
-
Sets the value of the mediaType property.
- setMediaType(String) - Method in class com.sun.research.ws.wadl.Representation
-
Sets the value of the mediaType property.
- setMediaType(MediaType) - Method in interface javax.ws.rs.ext.InterceptorContext
-
Update media type of HTTP entity.
- setMediaType(MediaType) - Method in class org.glassfish.jersey.server.ContainerResponse
-
Set the message content media type.
- setMethod(String) - Method in interface javax.ws.rs.client.ClientRequestContext
-
Set the request method.
- setMethod(String) - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Set the request method.
- setMethod(String) - Method in class org.glassfish.jersey.client.ClientRequest
-
- setMethod(String) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- setMethodWithoutException(String) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- setMustRevalidate(boolean) - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the must-revalidate cache control directive.
- setName(String) - Method in class com.sun.research.ws.wadl.Method
-
Sets the value of the name property.
- setName(String) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the name property.
- setNoCache(boolean) - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the no-cache cache control directive.
- setNoStore(boolean) - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the no-store cache control directive.
- setNoTransform(boolean) - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the no-transform cache control directive.
- setOutputStream(OutputStream) - Method in interface javax.ws.rs.ext.WriterInterceptorContext
-
Set a new output stream for the object to be written.
- setParser(ChunkParser) - Method in class org.glassfish.jersey.client.ChunkedInput
-
Set new chunk parser.
- setPath(String) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the path property.
- setPath(String) - Method in class com.sun.research.ws.wadl.Resource
-
Sets the value of the path property.
- setPrivate(boolean) - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the private cache control directive.
- setProperties(Map<String, ?>) - Method in class org.glassfish.jersey.server.ResourceConfig
-
Set new configuration properties replacing all previously set properties.
- setProperties(Properties) - Method in class org.glassfish.jersey.server.wadl.config.WadlGeneratorDescription
-
- setProperty(String, Object) - Method in interface javax.ws.rs.client.ClientRequestContext
-
Binds an object to a given property name in the current request/response
exchange context.
- setProperty(String, Object) - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Binds an object to a given property name in the current request/response
exchange context.
- setProperty(String, Object) - Method in interface javax.ws.rs.ext.InterceptorContext
-
Binds an object to a given property name in the current request/response
exchange context.
- setProperty(String, Object) - Method in class org.glassfish.jersey.client.ClientRequest
-
- setProperty(String, Object) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- setProxyRevalidate(boolean) - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the must-revalidate cache control directive.
- setQueryType(String) - Method in class com.sun.research.ws.wadl.Resource
-
Sets the value of the queryType property.
- setRel(String) - Method in class com.sun.research.ws.wadl.Link
-
Sets the value of the rel property.
- setRepeating(Boolean) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the repeating property.
- setRequest(Request) - Method in class com.sun.research.ws.wadl.Method
-
Sets the value of the request property.
- setRequestScopedInitializer(RequestScopedInitializer) - Method in class org.glassfish.jersey.server.ContainerRequest
-
Set a custom container extensions initializer for the current request.
- setRequestUri(URI) - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Set a new request URI using the current base URI of the application to
resolve the application-specific request URI part.
- setRequestUri(URI, URI) - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Set a new request URI using a new base URI to resolve the application-specific
request URI part.
- setRequestUri(URI) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- setRequestUri(URI, URI) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- setRequired(Boolean) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the required property.
- setResolvedRequestUri(URI) - Method in class org.glassfish.jersey.client.ClientResponse
-
Set the absolute URI of the ultimate request that was made to receive this response.
- setResourceType(String) - Method in class com.sun.research.ws.wadl.Link
-
Sets the value of the resourceType property.
- setRev(String) - Method in class com.sun.research.ws.wadl.Link
-
Sets the value of the rev property.
- setSecurityContext(SecurityContext) - Method in interface javax.ws.rs.container.ContainerRequestContext
-
Set a new injectable security context information for the current request.
- setSecurityContext(SecurityContext) - Method in class org.glassfish.jersey.server.ContainerRequest
-
- setSMaxAge(int) - Method in class javax.ws.rs.core.CacheControl
-
Corresponds to the s-maxage cache control directive.
- setStatus(int) - Method in interface javax.ws.rs.client.ClientResponseContext
-
Set a new response status code.
- setStatus(int) - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Set a new response status code.
- setStatus(int) - Method in class org.glassfish.jersey.client.ClientResponse
-
- setStatus(int) - Method in class org.glassfish.jersey.server.ContainerResponse
-
- setStatusInfo(Response.StatusType) - Method in interface javax.ws.rs.client.ClientResponseContext
-
Set the complete status information (status code and reason phrase) associated
with the response.
- setStatusInfo(Response.StatusType) - Method in interface javax.ws.rs.container.ContainerResponseContext
-
Set the complete status information (status code and reason phrase) associated
with the response.
- setStatusInfo(Response.StatusType) - Method in class org.glassfish.jersey.client.ClientResponse
-
- setStatusInfo(Response.StatusType) - Method in class org.glassfish.jersey.server.ContainerResponse
-
- setStreamProvider(OutboundMessageContext.StreamProvider) - Method in class org.glassfish.jersey.server.ContainerResponse
-
Set the output stream provider callback.
- setStyle(ParamStyle) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the style property.
- setSuspendTimeout(long, TimeUnit) - Method in interface org.glassfish.jersey.server.spi.ContainerResponseWriter
-
Set the suspend timeout.
- setTimeout(long, TimeUnit) - Method in interface javax.ws.rs.container.AsyncResponse
-
Set/update the suspend timeout.
- setTimeoutHandler(TimeoutHandler) - Method in interface javax.ws.rs.container.AsyncResponse
-
Set/replace a time-out handler for the suspended asynchronous response.
- setTitle(String) - Method in class com.sun.research.ws.wadl.Doc
-
Sets the value of the title property.
- setType(QName) - Method in class com.sun.research.ws.wadl.Param
-
Sets the value of the type property.
- setType(Class<?>) - Method in interface javax.ws.rs.ext.InterceptorContext
-
Update Java type before calling message body provider.
- setUri(URI) - Method in interface javax.ws.rs.client.ClientRequestContext
-
Set a new request URI.
- setUri(URI) - Method in class org.glassfish.jersey.client.ClientRequest
-
- setValue(String) - Method in class com.sun.research.ws.wadl.Option
-
Sets the value of the value property.
- setWadlGenerationEnabled(boolean) - Method in interface org.glassfish.jersey.server.wadl.WadlApplicationContext
-
Enable/disable WADL generation.
- setWadlGeneratorDelegate(WadlGenerator) - Method in interface org.glassfish.jersey.server.wadl.WadlGenerator
-
Sets the delegate that is decorated by this wadl generator.
- setWorkers(MessageBodyWorkers) - Method in class org.glassfish.jersey.client.ClientRequest
-
Set the message body workers associated with the request.
- setWriter(ContainerResponseWriter) - Method in class org.glassfish.jersey.server.ContainerRequest
-
Set the container response writer for the current request.
- Severity - Enum in org.glassfish.jersey
-
Common severity.
- size() - Method in class javax.ws.rs.core.AbstractMultivaluedMap
-
- snapshot() - Method in interface org.glassfish.jersey.server.monitoring.ApplicationInfo
-
Get the immutable consistent snapshot of the application info.
- snapshot() - Method in interface org.glassfish.jersey.server.monitoring.ExceptionMapperStatistics
-
Get the immutable consistent snapshot of the monitoring statistics.
- snapshot() - Method in interface org.glassfish.jersey.server.monitoring.ExecutionStatistics
-
Get the immutable consistent snapshot of the monitoring statistics.
- snapshot() - Method in interface org.glassfish.jersey.server.monitoring.MonitoringStatistics
-
Get the immutable consistent snapshot of the monitoring statistics.
- snapshot() - Method in interface org.glassfish.jersey.server.monitoring.ResourceMethodStatistics
-
Get the immutable and consistent snapshot of the monitoring statistics.
- snapshot() - Method in interface org.glassfish.jersey.server.monitoring.ResourceStatistics
-
Get the immutable and consistent snapshot of the monitoring statistics.
- snapshot() - Method in interface org.glassfish.jersey.server.monitoring.ResponseStatistics
-
Get the immutable and consistent snapshot of the monitoring statistics.
- snapshot() - Method in interface org.glassfish.jersey.server.monitoring.TimeWindowStatistics
-
Get the immutable and consistent snapshot of the monitoring statistics.
- SslConfigurator - Class in org.glassfish.jersey
-
Utility class, which helps to configure
SSLContext instances.
- sslContext(SSLContext) - Method in class javax.ws.rs.client.ClientBuilder
-
Set the SSL context that will be used when creating secured transport connections
to server endpoints from
web targets created by the client
instance that is using this SSL context.
- sslContext(SSLContext) - Method in class org.glassfish.jersey.client.JerseyClientBuilder
-
- status - Variable in class com.sun.research.ws.wadl.Response
-
- status(int) - Method in class javax.ws.rs.core.Response.ResponseBuilder
-
Set the status on the ResponseBuilder.
- status(Response.StatusType) - Method in class javax.ws.rs.core.Response.ResponseBuilder
-
Set the status on the ResponseBuilder.
- status(Response.Status) - Method in class javax.ws.rs.core.Response.ResponseBuilder
-
Set the status on the ResponseBuilder.
- status(Response.StatusType) - Static method in class javax.ws.rs.core.Response
-
Create a new ResponseBuilder with the supplied status.
- status(Response.Status) - Static method in class javax.ws.rs.core.Response
-
Create a new ResponseBuilder with the supplied status.
- status(int) - Static method in class javax.ws.rs.core.Response
-
Create a new ResponseBuilder with the supplied status.
- store - Variable in class javax.ws.rs.core.AbstractMultivaluedMap
-
Backing store for the [key, multi-value] pairs.
- StreamingOutput - Interface in javax.ws.rs.core
-
A type that may be used as a resource method return value or as the entity
in a
Response when the application wishes to stream the output.
- style - Variable in class com.sun.research.ws.wadl.Param
-
- SubjectSecurityContext - Interface in org.glassfish.jersey.server
-
Security context that allows establishing a subject before a resource method
or a sub-resource locator is called.
- submit() - Method in interface javax.ws.rs.client.Invocation
-
Submit the request for an asynchronous invocation and receive a future
response back.
- submit(Class<T>) - Method in interface javax.ws.rs.client.Invocation
-
Submit the request for an asynchronous invocation and receive a future
response of the specified type back.
- submit(GenericType<T>) - Method in interface javax.ws.rs.client.Invocation
-
Submit the request for an asynchronous invocation and receive a future
response of the specified generic type back.
- submit(InvocationCallback<T>) - Method in interface javax.ws.rs.client.Invocation
-
Submit the request for an asynchronous invocation and register an
InvocationCallback to process the future result of the invocation.
- submit() - Method in class org.glassfish.jersey.client.JerseyInvocation
-
- submit(Class<T>) - Method in class org.glassfish.jersey.client.JerseyInvocation
-
- submit(GenericType<T>) - Method in class org.glassfish.jersey.client.JerseyInvocation
-
- submit(InvocationCallback<T>) - Method in class org.glassfish.jersey.client.JerseyInvocation
-
- supports(Class<?>) - Method in interface org.glassfish.jersey.spi.HeaderDelegateProvider
-
Ascertain if the Provider supports a particular type.
- SUPPRESS_HTTP_COMPLIANCE_VALIDATION - Static variable in class org.glassfish.jersey.client.ClientProperties
-
If true, the strict validation of HTTP specification compliance
will be suppressed.
- suspend(long, TimeUnit, ContainerResponseWriter.TimeoutHandler) - Method in interface org.glassfish.jersey.server.spi.ContainerResponseWriter
-
Suspend the request/response processing.
- suspend(ExternalRequestContext<T>) - Method in interface org.glassfish.jersey.server.spi.ExternalRequestScope
-
Suspend request associated with provided context.
- suspend() - Method in interface org.glassfish.jersey.servlet.spi.AsyncContextDelegate
-
Invoked by the superior
ContainerResponseWriter responsible for writing the response when processing is to be
suspended.
- Suspendable - Interface in org.glassfish.jersey.server.model
-
Jersey model component that is suspendable and may hold suspend-related
information.
- Suspended - Annotation Type in javax.ws.rs.container
-
- suspended(long, TimeUnit) - Method in class org.glassfish.jersey.server.model.ResourceMethod.Builder
-
Mark the component for suspending.
- SyncInvoker - Interface in javax.ws.rs.client
-
Uniform interface for synchronous invocation of HTTP methods.