| Package | Description |
|---|---|
| javax.ws.rs.client |
The JAX-RS client API
|
| Modifier and Type | Method and Description |
|---|---|
WebTarget |
WebTarget.matrixParam(String name,
Object... values)
Create a new
WebTarget instance by appending a matrix parameter to
the existing set of matrix parameters of the current final segment of the
URI of the current target instance. |
WebTarget |
WebTarget.path(String path)
Create a new
WebTarget instance by appending path to the URI of
the current target instance. |
WebTarget |
WebTarget.pathParam(String name,
Object value)
Create a new
WebTarget instance by replacing existing path parameter
in the URI of the current target instance with a supplied value. |
WebTarget |
WebTarget.pathParams(Map<String,Object> parameters)
Create a new
WebTarget instance by replacing one or more existing path parameters
in the URI of the current target instance with supplied values. |
WebTarget |
WebTarget.queryParam(String name,
Object... values)
Create a new
WebTarget instance by configuring a query parameter on the URI
of the current target instance. |
WebTarget |
WebTarget.queryParams(MultivaluedMap<String,Object> parameters)
Create a new
WebTarget instance by configuring one or more query parameters and
respective values on the URI of the current target instance. |
WebTarget |
Client.target(Link link)
Build a new web resource target.
|
WebTarget |
Client.target(String uri)
Build a new web resource target.
|
WebTarget |
Client.target(URI uri)
Build a new web resource target.
|
WebTarget |
Client.target(UriBuilder uriBuilder)
Build a new web resource target.
|
Copyright © 2007–2015 The Apache Software Foundation. All rights reserved.