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<String,String> |
PathSegment.getMatrixParameters()
Get a map of the matrix parameters associated with the path segment.
|
abstract MultivaluedMap<String,Object> |
Response.getMetadata()
Get metadata associated with the response as a map.
|
MultivaluedMap<String,String> |
UriInfo.getPathParameters()
Get the values of any embedded URI template parameters.
|
MultivaluedMap<String,String> |
UriInfo.getPathParameters(boolean decode)
Get the values of any embedded URI template parameters.
|
MultivaluedMap<String,String> |
UriInfo.getQueryParameters()
Get the URI query parameters of the current request.
|
MultivaluedMap<String,String> |
UriInfo.getQueryParameters(boolean decode)
Get the URI query parameters of the current request.
|
MultivaluedMap<String,String> |
HttpHeaders.getRequestHeaders()
Get the values of HTTP request headers.
|
Modifier and Type | Method and Description |
---|---|
T |
MessageBodyReader.readFrom(Class<T> type,
Type genericType,
Annotation[] annotations,
MediaType mediaType,
MultivaluedMap<String,String> httpHeaders,
InputStream entityStream)
Read a type from the
InputStream . |
void |
MessageBodyWriter.writeTo(T t,
Class<?> type,
Type genericType,
Annotation[] annotations,
MediaType mediaType,
MultivaluedMap<String,Object> httpHeaders,
OutputStream entityStream)
Write a type to an HTTP response.
|
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.