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

Packages that use WebTarget
Package
Description
The JAX-RS client API
  • Uses of WebTarget in javax.ws.rs.client

    Subinterfaces with type arguments of type WebTarget in javax.ws.rs.client
    Modifier and Type
    Interface
    Description
    interface 
    A resource target identified by the resource URI.
    Methods in javax.ws.rs.client that return WebTarget
    Modifier and Type
    Method
    Description
    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.path(String path)
    Create a new WebTarget instance by appending path to the URI of the current target instance.
    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.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.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.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.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.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.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.
    Client.target(String uri)
    Build a new web resource target.
    Client.target(URI uri)
    Build a new web resource target.
    Client.target(Link link)
    Build a new web resource target.
    Client.target(UriBuilder uriBuilder)
    Build a new web resource target.