Uses of Interface
javax.ws.rs.client.Target

Packages that use Target
javax.ws.rs.client The JAX-RS client API 
 

Uses of Target in javax.ws.rs.client
 

Methods in javax.ws.rs.client that return Target
 Target Target.matrixParam(String name, Object... values)
          Create a new Target 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.
 Target Target.path(String path)
          Create a new Target instance by appending path to the URI of the current target instance.
 Target Target.pathParam(String name, Object value)
          Create a new Target instance by replacing existing path parameter in the URI of the current target instance with a supplied value.
 Target Target.pathParams(Map<String,Object> parameters)
          Create a new Target instance by replacing one or more existing path parameters in the URI of the current target instance with supplied values.
 Target Target.queryParam(String name, Object... values)
          Create a new Target instance by adding a query parameter to the URI of the current target instance.
 Target Target.queryParams(MultivaluedMap<String,Object> parameters)
          Create a new Target instance by adding one or more query parameters and respective values to the URI of the current target instance.
 Target Client.target(Link link)
          Build a new web resource target.
 Target Client.target(String uri)
          Build a new web resource target.
 Target Client.target(URI uri)
          Build a new web resource target.
 Target Client.target(UriBuilder uriBuilder)
          Build a new web resource target.
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.