| Package | Description |
|---|---|
| javax.ws.rs.core |
Low-level interfaces and annotations used to create RESTful service
resources.
|
| javax.ws.rs.ext |
APIs that provide extensions to the types supported by the JAX-RS API.
|
| Modifier and Type | Method and Description |
|---|---|
MultivaluedMap<java.lang.String,java.lang.String> |
PathSegment.getMatrixParameters()
Get a map of the matrix parameters associated with the path segment.
|
abstract MultivaluedMap<java.lang.String,java.lang.Object> |
Response.getMetadata()
Get metadata associated with the response as a map.
|
MultivaluedMap<java.lang.String,java.lang.String> |
UriInfo.getPathParameters()
Get the values of any embedded URI template parameters.
|
MultivaluedMap<java.lang.String,java.lang.String> |
UriInfo.getPathParameters(boolean decode)
Get the values of any embedded URI template parameters.
|
MultivaluedMap<java.lang.String,java.lang.String> |
UriInfo.getQueryParameters()
Get the URI query parameters of the current request.
|
MultivaluedMap<java.lang.String,java.lang.String> |
UriInfo.getQueryParameters(boolean decode)
Get the URI query parameters of the current request.
|
MultivaluedMap<java.lang.String,java.lang.String> |
HttpHeaders.getRequestHeaders()
Get the values of HTTP request headers.
|
| Modifier and Type | Method and Description |
|---|---|
T |
MessageBodyReader.readFrom(java.lang.Class<T> type,
java.lang.reflect.Type genericType,
java.lang.annotation.Annotation[] annotations,
MediaType mediaType,
MultivaluedMap<java.lang.String,java.lang.String> httpHeaders,
java.io.InputStream entityStream)
Read a type from the
InputStream. |
void |
MessageBodyWriter.writeTo(T t,
java.lang.Class<?> type,
java.lang.reflect.Type genericType,
java.lang.annotation.Annotation[] annotations,
MediaType mediaType,
MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders,
java.io.OutputStream entityStream)
Write a type to an HTTP response.
|
Copyright © 2007-2013 The Apache Software Foundation. All Rights Reserved.