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

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

Uses of WebTarget in javax.ws.rs.client
 

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



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