Uses of Class
javax.ws.rs.core.UriBuilder

Packages that use UriBuilder
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
javax.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API. 
org.jboss.resteasy.client   
org.jboss.resteasy.core   
org.jboss.resteasy.plugins.guice.ext   
org.jboss.resteasy.specimpl   
org.jboss.resteasy.spi   
 

Uses of UriBuilder in javax.ws.rs.core
 

Methods in javax.ws.rs.core that return UriBuilder
abstract  UriBuilder UriBuilder.clone()
          Create a copy of the UriBuilder preserving its state.
abstract  UriBuilder UriBuilder.fragment(java.lang.String fragment)
          Set the URI fragment.
static UriBuilder UriBuilder.fromPath(java.lang.String path)
          Create a new instance representing a relative URI initialized from a URI path.
static UriBuilder UriBuilder.fromResource(java.lang.Class<?> resource)
          Create a new instance representing a relative URI initialized from a root resource class.
static UriBuilder UriBuilder.fromUri(java.lang.String uri)
          Create a new instance initialized from an existing URI.
static UriBuilder UriBuilder.fromUri(java.net.URI uri)
          Create a new instance initialized from an existing URI.
 UriBuilder UriInfo.getAbsolutePathBuilder()
          Get the absolute path of the request in the form of a UriBuilder.
 UriBuilder UriInfo.getBaseUriBuilder()
          Get the base URI of the application in the form of a UriBuilder.
 UriBuilder UriInfo.getRequestUriBuilder()
          Get the absolute request URI in the form of a UriBuilder.
abstract  UriBuilder UriBuilder.host(java.lang.String host)
          Set the URI host.
abstract  UriBuilder UriBuilder.matrixParam(java.lang.String name, java.lang.Object... values)
          Append a matrix parameter to the existing set of matrix parameters of the current final segment of the URI path.
protected static UriBuilder UriBuilder.newInstance()
          Creates a new instance of UriBuilder.
abstract  UriBuilder UriBuilder.path(java.lang.Class resource)
          Append the path from a Path-annotated class to the existing path.
abstract  UriBuilder UriBuilder.path(java.lang.Class resource, java.lang.String method)
          Append the path from a Path-annotated method to the existing path.
abstract  UriBuilder UriBuilder.path(java.lang.reflect.Method method)
          Append the path from a Path-annotated method to the existing path.
abstract  UriBuilder UriBuilder.path(java.lang.String path)
          Append path to the existing path.
abstract  UriBuilder UriBuilder.port(int port)
          Set the URI port.
abstract  UriBuilder UriBuilder.queryParam(java.lang.String name, java.lang.Object... values)
          Append a query parameter to the existing set of query parameters.
abstract  UriBuilder UriBuilder.replaceMatrix(java.lang.String matrix)
          Set the matrix parameters of the current final segment of the current URI path.
abstract  UriBuilder UriBuilder.replaceMatrixParam(java.lang.String name, java.lang.Object... values)
          Replace the existing value(s) of a matrix parameter on the current final segment of the URI path.
abstract  UriBuilder UriBuilder.replacePath(java.lang.String path)
          Set the URI path.
abstract  UriBuilder UriBuilder.replaceQuery(java.lang.String query)
          Set the URI query string.
abstract  UriBuilder UriBuilder.replaceQueryParam(java.lang.String name, java.lang.Object... values)
          Replace the existing value(s) of a query parameter.
abstract  UriBuilder UriBuilder.scheme(java.lang.String scheme)
          Set the URI scheme.
abstract  UriBuilder UriBuilder.schemeSpecificPart(java.lang.String ssp)
          Set the URI scheme-specific-part (see URI).
abstract  UriBuilder UriBuilder.segment(java.lang.String... segments)
          Append path segments to the existing path.
abstract  UriBuilder UriBuilder.uri(java.net.URI uri)
          Copies the non-null components of the supplied URI to the UriBuilder replacing any existing values for those components.
abstract  UriBuilder UriBuilder.userInfo(java.lang.String ui)
          Set the URI user-info.
 

Uses of UriBuilder in javax.ws.rs.ext
 

Methods in javax.ws.rs.ext that return UriBuilder
abstract  UriBuilder RuntimeDelegate.createUriBuilder()
          Create a new instance of a UriBuilder.
 

Uses of UriBuilder in org.jboss.resteasy.client
 

Constructors in org.jboss.resteasy.client with parameters of type UriBuilder
ClientRequest(UriBuilder uri, ClientExecutor executor)
           
ClientRequest(UriBuilder uri, ClientExecutor executor, ResteasyProviderFactory providerFactory)
           
 

Uses of UriBuilder in org.jboss.resteasy.core
 

Methods in org.jboss.resteasy.core that return UriBuilder
 UriBuilder ThreadLocalResteasyProviderFactory.createUriBuilder()
           
 

Uses of UriBuilder in org.jboss.resteasy.plugins.guice.ext
 

Methods in org.jboss.resteasy.plugins.guice.ext that return UriBuilder
 UriBuilder UriBuilderProvider.get()
           
 

Uses of UriBuilder in org.jboss.resteasy.specimpl
 

Subclasses of UriBuilder in org.jboss.resteasy.specimpl
 class UriBuilderImpl
           
 

Methods in org.jboss.resteasy.specimpl that return UriBuilder
 UriBuilder UriBuilderImpl.clone()
           
 UriBuilder UriBuilderImpl.fragment(java.lang.String fragment)
           
static UriBuilder UriBuilderImpl.fromTemplate(java.lang.String uriTemplate)
          Must follow the patter scheme://host:port/path?query#fragment

port, path, query and fragment are optional.

 UriBuilder UriInfoImpl.getAbsolutePathBuilder()
           
 UriBuilder UriInfoImpl.getBaseUriBuilder()
           
 UriBuilder UriInfoImpl.getRequestUriBuilder()
           
 UriBuilder UriBuilderImpl.host(java.lang.String host)
           
 UriBuilder UriBuilderImpl.matrixParam(java.lang.String name, java.lang.Object... values)
           
 UriBuilder UriBuilderImpl.path(java.lang.Class resource)
           
 UriBuilder UriBuilderImpl.path(java.lang.Class resource, java.lang.String method)
           
 UriBuilder UriBuilderImpl.path(java.lang.reflect.Method method)
           
 UriBuilder UriBuilderImpl.path(java.lang.String segment)
           
 UriBuilder UriBuilderImpl.port(int port)
           
 UriBuilder UriBuilderImpl.queryParam(java.lang.String name, java.lang.Object... values)
           
 UriBuilder UriBuilderImpl.replaceMatrix(java.lang.String matrix)
           
 UriBuilder UriBuilderImpl.replaceMatrixParam(java.lang.String name, java.lang.Object... values)
           
 UriBuilder UriBuilderImpl.replacePath(java.lang.String path)
           
 UriBuilder UriBuilderImpl.replaceQuery(java.lang.String query)
           
 UriBuilder UriBuilderImpl.replaceQueryParam(java.lang.String name, java.lang.Object... values)
           
 UriBuilder UriBuilderImpl.scheme(java.lang.String scheme)
           
 UriBuilder UriBuilderImpl.schemeSpecificPart(java.lang.String ssp)
           
 UriBuilder UriBuilderImpl.segment(java.lang.String... segments)
           
 UriBuilder UriBuilderImpl.substitutePathParam(java.lang.String name, java.lang.Object value, boolean isEncoded)
          Only replace path params in path of URI.
 UriBuilder UriBuilderImpl.uri(java.net.URI uri)
           
 UriBuilder UriBuilderImpl.uriTemplate(java.lang.String uriTemplate)
          Must follow the patter scheme://host:port/path?query#fragment

port, path, query and fragment are optional.

 UriBuilder UriBuilderImpl.userInfo(java.lang.String ui)
           
 

Uses of UriBuilder in org.jboss.resteasy.spi
 

Methods in org.jboss.resteasy.spi that return UriBuilder
 UriBuilder ResteasyProviderFactory.createUriBuilder()
           
 



Copyright © 2009. All Rights Reserved.