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

Packages that use WebTarget
javax.ws.rs.client The JAX-RS client API 
org.glassfish.jersey.client Jersey client-side classes. 
 

Uses of WebTarget in javax.ws.rs.client
 

Methods in javax.ws.rs.client that return WebTarget
 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.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.resolveTemplate(String name, Object value)
          Create a new WebTarget instance by resolving a URI template with a given name in the URI of the current target instance using a supplied value.
 WebTarget WebTarget.resolveTemplate(String name, Object value, boolean encodeSlashInPath)
          Create a new WebTarget instance by resolving a URI template with a given name in the URI of the current target instance using a supplied value.
 WebTarget WebTarget.resolveTemplateFromEncoded(String name, Object value)
          Create a new WebTarget instance by resolving a URI template with a given name in the URI of the current target instance using a supplied encoded value.
 WebTarget WebTarget.resolveTemplates(Map<String,Object> templateValues)
          Create a new WebTarget instance by resolving one or more URI templates in the URI of the current target instance using supplied name-value pairs.
 WebTarget WebTarget.resolveTemplates(Map<String,Object> templateValues, boolean encodeSlashInPath)
          Create a new WebTarget instance by resolving one or more URI templates in the URI of the current target instance using supplied name-value pairs.
 WebTarget WebTarget.resolveTemplatesFromEncoded(Map<String,Object> templateValues)
          Create a new WebTarget instance by resolving one or more URI templates in the URI of the current target instance using supplied name-encoded value pairs.
 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.
 

Uses of WebTarget in org.glassfish.jersey.client
 

Classes in org.glassfish.jersey.client that implement WebTarget
 class JerseyWebTarget
          Jersey implementation of JAX-RS client target contract.
 



Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.