org.jboss.resteasy.specimpl
Class UriBuilderImpl

java.lang.Object
  extended by javax.ws.rs.core.UriBuilder
      extended by org.jboss.resteasy.specimpl.UriBuilderImpl

public class UriBuilderImpl
extends UriBuilder

Version:
$Revision: 1 $
Author:
Bill Burke

Constructor Summary
UriBuilderImpl()
           
 
Method Summary
 java.net.URI build(java.lang.Object... values)
          Build a URI, using the supplied values in order to replace any URI template parameters.
 java.net.URI buildFromEncoded(java.lang.Object... values)
          Build a URI.
 java.net.URI buildFromEncodedMap(java.util.Map<java.lang.String,? extends java.lang.Object> values)
          Build a URI, any URI template parameters will be replaced by the value in the supplied map.
 java.net.URI buildFromMap(java.util.Map<java.lang.String,? extends java.lang.Object> values)
          Build a URI, any URI template parameters will be replaced by the value in the supplied map.
 java.net.URI buildFromMap(java.util.Map<java.lang.String,? extends java.lang.Object> paramMap, boolean isEncoded)
           
protected  java.net.URI buildFromValues(boolean encoded, java.lang.Object... values)
           
 UriBuilder clone()
          Create a copy of the UriBuilder preserving its state.
protected  java.util.regex.Matcher createUriParamMatcher(java.lang.String string)
           
 UriBuilder fragment(java.lang.String fragment)
          Set the URI fragment.
 java.lang.String getFragment()
           
 java.lang.String getHost()
           
 java.lang.String getPath()
           
 java.util.List<java.lang.String> getPathParamNamesInDeclarationOrder()
          Return a unique order list of path params
 int getPort()
           
 java.lang.String getQuery()
           
 java.lang.String getScheme()
           
 java.lang.String getUserInfo()
           
 UriBuilder host(java.lang.String host)
          Set the URI host.
 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.
 UriBuilder path(java.lang.Class resource)
          Append the path from a Path-annotated class to the existing path.
 UriBuilder path(java.lang.Class resource, java.lang.String method)
          Append the path from a Path-annotated method to the existing path.
 UriBuilder path(java.lang.reflect.Method method)
          Append the path from a Path-annotated method to the existing path.
 UriBuilder path(java.lang.String segment)
          Append path to the existing path.
protected static java.lang.String paths(boolean encode, java.lang.String basePath, java.lang.String... segments)
           
 UriBuilder port(int port)
          Set the URI port.
 UriBuilder queryParam(java.lang.String name, java.lang.Object... values)
          Append a query parameter to the existing set of query parameters.
 UriBuilder replaceMatrix(java.lang.String matrix)
          Set the matrix parameters of the current final segment of the current URI path.
 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.
protected  java.lang.StringBuffer replaceParameter(java.util.Map<java.lang.String,? extends java.lang.Object> paramMap, boolean isEncoded, java.lang.String string, java.lang.StringBuffer buffer)
           
protected  java.lang.StringBuffer replaceParameter(java.lang.String name, java.lang.String value, boolean isEncoded, java.lang.String string, java.lang.StringBuffer buffer)
           
 UriBuilder replacePath(java.lang.String path)
          Set the URI path.
 UriBuilder replaceQuery(java.lang.String query)
          Set the URI query string.
 UriBuilder replaceQueryParam(java.lang.String name, java.lang.Object... values)
          Replace the existing value(s) of a query parameter.
 UriBuilder scheme(java.lang.String scheme)
          Set the URI scheme.
 UriBuilder schemeSpecificPart(java.lang.String ssp)
          Set the URI scheme-specific-part (see URI).
 UriBuilder segment(java.lang.String... segments)
          Append path segments to the existing path.
 UriBuilder substitutePathParam(java.lang.String name, java.lang.Object value, boolean isEncoded)
          Only replace path params in path of URI.
 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.
 UriBuilder uriTemplate(java.lang.String uriTemplate)
          Must follow the patter scheme://host:port/path?query#fragment

port, path, query and fragment are optional.

 UriBuilder userInfo(java.lang.String ui)
          Set the URI user-info.
 
Methods inherited from class javax.ws.rs.core.UriBuilder
fromPath, fromResource, fromUri, fromUri, newInstance
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UriBuilderImpl

public UriBuilderImpl()
Method Detail

clone

public UriBuilder clone()
Description copied from class: UriBuilder
Create a copy of the UriBuilder preserving its state. This is a more efficient means of creating a copy than constructing a new UriBuilder from a URI returned by the UriBuilder.build(java.lang.Object...) method.

Specified by:
clone in class UriBuilder
Returns:
a copy of the UriBuilder

uriTemplate

public UriBuilder uriTemplate(java.lang.String uriTemplate)
Must follow the patter scheme://host:port/path?query#fragment

port, path, query and fragment are optional. Scheme and host must be specified.

You may put path parameters anywhere within the uriTemplate except port

Parameters:
uriTemplate -
Returns:

uri

public UriBuilder uri(java.net.URI uri)
               throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Copies the non-null components of the supplied URI to the UriBuilder replacing any existing values for those components.

Specified by:
uri in class UriBuilder
Parameters:
uri - the URI to copy components from
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if uri is null

scheme

public UriBuilder scheme(java.lang.String scheme)
                  throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Set the URI scheme.

Specified by:
scheme in class UriBuilder
Parameters:
scheme - the URI scheme, may contain URI template parameters. A null value will unset the URI scheme.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if scheme is invalid

schemeSpecificPart

public UriBuilder schemeSpecificPart(java.lang.String ssp)
                              throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Set the URI scheme-specific-part (see URI). This method will overwrite any existing values for authority, user-info, host, port and path.

Specified by:
schemeSpecificPart in class UriBuilder
Parameters:
ssp - the URI scheme-specific-part, may contain URI template parameters
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if ssp cannot be parsed or is null

userInfo

public UriBuilder userInfo(java.lang.String ui)
Description copied from class: UriBuilder
Set the URI user-info.

Specified by:
userInfo in class UriBuilder
Parameters:
ui - the URI user-info, may contain URI template parameters. A null value will unset userInfo component of the URI.
Returns:
the updated UriBuilder

host

public UriBuilder host(java.lang.String host)
                throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Set the URI host.

Specified by:
host in class UriBuilder
Parameters:
host - the URI host, may contain URI template parameters. A null value will unset the host component of the URI.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if host is invalid.

port

public UriBuilder port(int port)
                throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Set the URI port.

Specified by:
port in class UriBuilder
Parameters:
port - the URI port, a value of -1 will unset an explicit port.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if port is invalid

paths

protected static java.lang.String paths(boolean encode,
                                        java.lang.String basePath,
                                        java.lang.String... segments)

path

public UriBuilder path(java.lang.String segment)
                throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Append path to the existing path. When constructing the final path, a '/' separator will be inserted between the existing path and the supplied path if necessary. Existing '/' characters are preserved thus a single value can represent multiple URI path segments.

Specified by:
path in class UriBuilder
Parameters:
segment - the path, may contain URI template parameters
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if path is null

path

public UriBuilder path(java.lang.Class resource)
                throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Append the path from a Path-annotated class to the existing path. When constructing the final path, a '/' separator will be inserted between the existing path and the supplied path if necessary.

Specified by:
path in class UriBuilder
Parameters:
resource - a resource whose Path value will be used to obtain the path to append.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if resource is null, or if resource is not annotated with Path

path

public UriBuilder path(java.lang.Class resource,
                       java.lang.String method)
                throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Append the path from a Path-annotated method to the existing path. When constructing the final path, a '/' separator will be inserted between the existing path and the supplied path if necessary. This method is a convenience shortcut to path(Method), it can only be used in cases where there is a single method with the specified name that is annotated with Path.

Specified by:
path in class UriBuilder
Parameters:
resource - the resource containing the method
method - the name of the method whose Path value will be used to obtain the path to append
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if resource or method is null, or there is more than or less than one variant of the method annotated with Path

path

public UriBuilder path(java.lang.reflect.Method method)
                throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Append the path from a Path-annotated method to the existing path. When constructing the final path, a '/' separator will be inserted between the existing path and the supplied path if necessary.

Specified by:
path in class UriBuilder
Parameters:
method - a method whose Path value will be used to obtain the path to append to the existing path
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if method is null or is not annotated with a Path

replaceMatrix

public UriBuilder replaceMatrix(java.lang.String matrix)
                         throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Set the matrix parameters of the current final segment of the current URI path. This method will overwrite any existing matrix parameters on the current final segment of the current URI path. Note that the matrix parameters are tied to a particular path segment; subsequent addition of path segments will not affect their position in the URI path.

Specified by:
replaceMatrix in class UriBuilder
Parameters:
matrix - the matrix parameters, may contain URI template parameters. A null value will remove all matrix parameters of the current final segment of the current URI path.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if matrix cannot be parsed
See Also:
Matrix URIs

replaceQuery

public UriBuilder replaceQuery(java.lang.String query)
                        throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Set the URI query string. This method will overwrite any existing query parameters.

Specified by:
replaceQuery in class UriBuilder
Parameters:
query - the URI query string, may contain URI template parameters. A null value will remove all query parameters.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if query cannot be parsed

fragment

public UriBuilder fragment(java.lang.String fragment)
                    throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Set the URI fragment.

Specified by:
fragment in class UriBuilder
Parameters:
fragment - the URI fragment, may contain URI template parameters. A null value will remove any existing fragment.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException

substitutePathParam

public UriBuilder substitutePathParam(java.lang.String name,
                                      java.lang.Object value,
                                      boolean isEncoded)
Only replace path params in path of URI. This changes state of URIBuilder.

Parameters:
name -
value -
isEncoded -
Returns:

buildFromMap

public java.net.URI buildFromMap(java.util.Map<java.lang.String,? extends java.lang.Object> values)
                          throws java.lang.IllegalArgumentException,
                                 UriBuilderException
Description copied from class: UriBuilder
Build a URI, any URI template parameters will be replaced by the value in the supplied map. Values are converted to String using their toString method and are then encoded to match the rules of the URI component to which they pertain. All '%' characters in the stringified values will be encoded. The state of the builder is unaffected; this method may be called multiple times on the same builder instance.

Specified by:
buildFromMap in class UriBuilder
Parameters:
values - a map of URI template parameter names and values
Returns:
the URI built from the UriBuilder
Throws:
java.lang.IllegalArgumentException - if there are any URI template parameters without a supplied value, or if a template parameter value is null.
UriBuilderException - if a URI cannot be constructed based on the current state of the builder.

buildFromEncodedMap

public java.net.URI buildFromEncodedMap(java.util.Map<java.lang.String,? extends java.lang.Object> values)
                                 throws java.lang.IllegalArgumentException,
                                        UriBuilderException
Description copied from class: UriBuilder
Build a URI, any URI template parameters will be replaced by the value in the supplied map. Values are converted to String using their toString method and are then encoded to match the rules of the URI component to which they pertain. All % characters in the stringified values that are not followed by two hexadecimal numbers will be encoded. The state of the builder is unaffected; this method may be called multiple times on the same builder instance.

Specified by:
buildFromEncodedMap in class UriBuilder
Parameters:
values - a map of URI template parameter names and values
Returns:
the URI built from the UriBuilder
Throws:
java.lang.IllegalArgumentException - if there are any URI template parameters without a supplied value, or if a template parameter value is null.
UriBuilderException - if a URI cannot be constructed based on the current state of the builder.

buildFromMap

public java.net.URI buildFromMap(java.util.Map<java.lang.String,? extends java.lang.Object> paramMap,
                                 boolean isEncoded)
                          throws java.lang.IllegalArgumentException,
                                 UriBuilderException
Throws:
java.lang.IllegalArgumentException
UriBuilderException

replaceParameter

protected java.lang.StringBuffer replaceParameter(java.lang.String name,
                                                  java.lang.String value,
                                                  boolean isEncoded,
                                                  java.lang.String string,
                                                  java.lang.StringBuffer buffer)

createUriParamMatcher

protected java.util.regex.Matcher createUriParamMatcher(java.lang.String string)

replaceParameter

protected java.lang.StringBuffer replaceParameter(java.util.Map<java.lang.String,? extends java.lang.Object> paramMap,
                                                  boolean isEncoded,
                                                  java.lang.String string,
                                                  java.lang.StringBuffer buffer)

getPathParamNamesInDeclarationOrder

public java.util.List<java.lang.String> getPathParamNamesInDeclarationOrder()
Return a unique order list of path params

Returns:

build

public java.net.URI build(java.lang.Object... values)
                   throws java.lang.IllegalArgumentException,
                          UriBuilderException
Description copied from class: UriBuilder
Build a URI, using the supplied values in order to replace any URI template parameters. Values are converted to String using their toString method and are then encoded to match the rules of the URI component to which they pertain. All '%' characters in the stringified values will be encoded. The state of the builder is unaffected; this method may be called multiple times on the same builder instance.

All instances of the same template parameter will be replaced by the same value that corresponds to the position of the first instance of the template parameter. e.g. the template "{a}/{b}/{a}" with values {"x", "y", "z"} will result in the the URI "x/y/x", not "x/y/z".

Specified by:
build in class UriBuilder
Parameters:
values - a list of URI template parameter values
Returns:
the URI built from the UriBuilder
Throws:
java.lang.IllegalArgumentException - if there are any URI template parameters without a supplied value, or if a value is null.
UriBuilderException - if a URI cannot be constructed based on the current state of the builder.

buildFromValues

protected java.net.URI buildFromValues(boolean encoded,
                                       java.lang.Object... values)

matrixParam

public UriBuilder matrixParam(java.lang.String name,
                              java.lang.Object... values)
                       throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Append a matrix parameter to the existing set of matrix parameters of the current final segment of the URI path. If multiple values are supplied the parameter will be added once per value. Note that the matrix parameters are tied to a particular path segment; subsequent addition of path segments will not affect their position in the URI path.

Specified by:
matrixParam in class UriBuilder
Parameters:
name - the matrix parameter name, may contain URI template parameters
values - the matrix parameter value(s), each object will be converted to a String using its toString() method. Stringified values may contain URI template parameters.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if name or values is null
See Also:
Matrix URIs

replaceMatrixParam

public UriBuilder replaceMatrixParam(java.lang.String name,
                                     java.lang.Object... values)
                              throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Replace the existing value(s) of a matrix parameter on the current final segment of the URI path. If multiple values are supplied the parameter will be added once per value. Note that the matrix parameters are tied to a particular path segment; subsequent addition of path segments will not affect their position in the URI path.

Specified by:
replaceMatrixParam in class UriBuilder
Parameters:
name - the matrix parameter name, may contain URI template parameters
values - the matrix parameter value(s), each object will be converted to a String using its toString() method. Stringified values may contain URI template parameters. If values is empty or null then all current values of the parameter are removed.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if name is null.
See Also:
Matrix URIs

queryParam

public UriBuilder queryParam(java.lang.String name,
                             java.lang.Object... values)
                      throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Append a query parameter to the existing set of query parameters. If multiple values are supplied the parameter will be added once per value.

Specified by:
queryParam in class UriBuilder
Parameters:
name - the query parameter name, may contain URI template parameters
values - the query parameter value(s), each object will be converted to a String using its toString() method. Stringified values may contain URI template parameters.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if name or values is null

replaceQueryParam

public UriBuilder replaceQueryParam(java.lang.String name,
                                    java.lang.Object... values)
                             throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Replace the existing value(s) of a query parameter. If multiple values are supplied the parameter will be added once per value.

Specified by:
replaceQueryParam in class UriBuilder
Parameters:
name - the query parameter name, may contain URI template parameters
values - the query parameter value(s), each object will be converted to a String using its toString() method. Stringified values may contain URI template parameters. If values is empty or null then all current values of the parameter are removed.
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if name is null

getHost

public java.lang.String getHost()

getScheme

public java.lang.String getScheme()

getPort

public int getPort()

getUserInfo

public java.lang.String getUserInfo()

getPath

public java.lang.String getPath()

getQuery

public java.lang.String getQuery()

getFragment

public java.lang.String getFragment()

segment

public UriBuilder segment(java.lang.String... segments)
                   throws java.lang.IllegalArgumentException
Description copied from class: UriBuilder
Append path segments to the existing path. When constructing the final path, a '/' separator will be inserted between the existing path and the first path segment if necessary and each supplied segment will also be separated by '/'. Existing '/' characters are encoded thus a single value can only represent a single URI path segment.

Specified by:
segment in class UriBuilder
Parameters:
segments - the path segment values, each may contain URI template parameters
Returns:
the updated UriBuilder
Throws:
java.lang.IllegalArgumentException - if segments or any element of segments is null

buildFromEncoded

public java.net.URI buildFromEncoded(java.lang.Object... values)
                              throws java.lang.IllegalArgumentException,
                                     UriBuilderException
Description copied from class: UriBuilder
Build a URI. Any URI templates parameters will be replaced with the supplied values in order. Values are converted to String using their toString method and are then encoded to match the rules of the URI component to which they pertain. All % characters in the stringified values that are not followed by two hexadecimal numbers will be encoded. The state of the builder is unaffected; this method may be called multiple times on the same builder instance.

All instances of the same template parameter will be replaced by the same value that corresponds to the position of the first instance of the template parameter. e.g. the template "{a}/{b}/{a}" with values {"x", "y", "z"} will result in the the URI "x/y/x", not "x/y/z".

Specified by:
buildFromEncoded in class UriBuilder
Parameters:
values - a list of URI template parameter values
Returns:
the URI built from the UriBuilder
Throws:
java.lang.IllegalArgumentException - if there are any URI template parameters without a supplied value, or if a value is null.
UriBuilderException - if a URI cannot be constructed based on the current state of the builder.

replacePath

public UriBuilder replacePath(java.lang.String path)
Description copied from class: UriBuilder
Set the URI path. This method will overwrite any existing path and associated matrix parameters. Existing '/' characters are preserved thus a single value can represent multiple URI path segments.

Specified by:
replacePath in class UriBuilder
Parameters:
path - the path, may contain URI template parameters. A null value will unset the path component of the URI.
Returns:
the updated UriBuilder


Copyright © 2009. All Rights Reserved.