org.jboss.resteasy.specimpl
Class UriInfoImpl

java.lang.Object
  extended by org.jboss.resteasy.specimpl.UriInfoImpl
All Implemented Interfaces:
UriInfo

public class UriInfoImpl
extends java.lang.Object
implements UriInfo

Version:
$Revision: 1 $
Author:
Bill Burke

Constructor Summary
UriInfoImpl(java.net.URI absolutePath, java.lang.String path, java.lang.String queryString)
           
UriInfoImpl(java.net.URI absolutePath, java.lang.String encodedPath, java.lang.String queryString, java.util.List<PathSegment> encodedPathSegments)
           
 
Method Summary
 void addEncodedPathParameter(java.lang.String name, java.lang.String value)
           
 UriInfoImpl clone()
           
protected  void extractParameters(java.lang.String queryString)
           
 java.net.URI getAbsolutePath()
          Get the absolute path of the request.
 UriBuilder getAbsolutePathBuilder()
          Get the absolute path of the request in the form of a UriBuilder.
 java.net.URI getBaseUri()
          Get the base URI of the application.
 UriBuilder getBaseUriBuilder()
          Get the base URI of the application in the form of a UriBuilder.
 java.lang.String getConnegExtension()
           
 MultivaluedMap<java.lang.String,PathSegment[]> getEncodedPathParameterPathSegments()
           
 java.util.List<java.lang.Object> getMatchedResources()
          Get a read-only list of the currently matched resource class instances.
 java.util.List<java.lang.String> getMatchedURIs()
          Get a read-only list of URIs for matched resources.
 java.util.List<java.lang.String> getMatchedURIs(boolean decode)
          Get a read-only list of URIs for matched resources.
 java.lang.String getPath()
          Get the path of the current request relative to the base URI as a string.
 java.lang.String getPath(boolean decode)
          Get the path of the current request relative to the base URI as a string.
 MultivaluedMap<java.lang.String,PathSegment[]> getPathParameterPathSegments()
           
 MultivaluedMap<java.lang.String,java.lang.String> getPathParameters()
          Get the values of any embedded URI template parameters.
 MultivaluedMap<java.lang.String,java.lang.String> getPathParameters(boolean decode)
          Get the values of any embedded URI template parameters.
 java.util.List<PathSegment> getPathSegments()
          Get the path of the current request relative to the base URI as a list of PathSegment.
 java.util.List<PathSegment> getPathSegments(boolean decode)
          Get the path of the current request relative to the base URI as a list of PathSegment.
 MultivaluedMap<java.lang.String,java.lang.String> getQueryParameters()
          Get the URI query parameters of the current request.
 MultivaluedMap<java.lang.String,java.lang.String> getQueryParameters(boolean decode)
          Get the URI query parameters of the current request.
 java.net.URI getRequestUri()
          Get the absolute request URI including any query parameters.
 UriBuilder getRequestUriBuilder()
          Get the absolute request URI in the form of a UriBuilder.
 void popCurrentResource()
           
 void popMatchedURI()
           
 void pushCurrentResource(java.lang.Object resource)
           
 void pushMatchedURI(java.lang.String encoded, java.lang.String decoded)
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UriInfoImpl

public UriInfoImpl(java.net.URI absolutePath,
                   java.lang.String path,
                   java.lang.String queryString)
Parameters:
absolutePath -
path - decoded equivalent to HttpServletRequest.getPathInfo()
queryString - encoded query string of request

UriInfoImpl

public UriInfoImpl(java.net.URI absolutePath,
                   java.lang.String encodedPath,
                   java.lang.String queryString,
                   java.util.List<PathSegment> encodedPathSegments)
Method Detail

clone

public UriInfoImpl clone()
Overrides:
clone in class java.lang.Object

getPath

public java.lang.String getPath()
Description copied from interface: UriInfo
Get the path of the current request relative to the base URI as a string. All sequences of escaped octets are decoded, equivalent to getPath(true).

Specified by:
getPath in interface UriInfo
Returns:
the relative URI path

getPath

public java.lang.String getPath(boolean decode)
Description copied from interface: UriInfo
Get the path of the current request relative to the base URI as a string.

Specified by:
getPath in interface UriInfo
Parameters:
decode - controls whether sequences of escaped octets are decoded (true) or not (false).
Returns:
the relative URI path

getPathSegments

public java.util.List<PathSegment> getPathSegments()
Description copied from interface: UriInfo
Get the path of the current request relative to the base URI as a list of PathSegment. This method is useful when the path needs to be parsed, particularly when matrix parameters may be present in the path. All sequences of escaped octets in path segments and matrix parameter values are decoded, equivalent to getPathSegments(true).

Specified by:
getPathSegments in interface UriInfo
Returns:
an unmodifiable list of PathSegment. The matrix parameter map of each path segment is also unmodifiable.
See Also:
PathSegment, Matrix URIs

getPathSegments

public java.util.List<PathSegment> getPathSegments(boolean decode)
Description copied from interface: UriInfo
Get the path of the current request relative to the base URI as a list of PathSegment. This method is useful when the path needs to be parsed, particularly when matrix parameters may be present in the path.

Specified by:
getPathSegments in interface UriInfo
Parameters:
decode - controls whether sequences of escaped octets in path segments and matrix parameter values are decoded (true) or not (false).
Returns:
an unmodifiable list of PathSegment. The matrix parameter map of each path segment is also unmodifiable.
See Also:
PathSegment, Matrix URIs

getRequestUri

public java.net.URI getRequestUri()
Description copied from interface: UriInfo
Get the absolute request URI including any query parameters.

Specified by:
getRequestUri in interface UriInfo
Returns:
the absolute request URI

getRequestUriBuilder

public UriBuilder getRequestUriBuilder()
Description copied from interface: UriInfo
Get the absolute request URI in the form of a UriBuilder.

Specified by:
getRequestUriBuilder in interface UriInfo
Returns:
a UriBuilder initialized with the absolute request URI

getAbsolutePath

public java.net.URI getAbsolutePath()
Description copied from interface: UriInfo
Get the absolute path of the request. This includes everything preceding the path (host, port etc) but excludes query parameters. This is a shortcut for uriInfo.getBase().resolve(uriInfo.getPath()).

Specified by:
getAbsolutePath in interface UriInfo
Returns:
the absolute path of the request

getAbsolutePathBuilder

public UriBuilder getAbsolutePathBuilder()
Description copied from interface: UriInfo
Get the absolute path of the request in the form of a UriBuilder. This includes everything preceding the path (host, port etc) but excludes query parameters.

Specified by:
getAbsolutePathBuilder in interface UriInfo
Returns:
a UriBuilder initialized with the absolute path of the request

getBaseUri

public java.net.URI getBaseUri()
Description copied from interface: UriInfo
Get the base URI of the application. URIs of root resource classes are all relative to this base URI.

Specified by:
getBaseUri in interface UriInfo
Returns:
the base URI of the application

getBaseUriBuilder

public UriBuilder getBaseUriBuilder()
Description copied from interface: UriInfo
Get the base URI of the application in the form of a UriBuilder.

Specified by:
getBaseUriBuilder in interface UriInfo
Returns:
a UriBuilder initialized with the base URI of the application.

getPathParameters

public MultivaluedMap<java.lang.String,java.lang.String> getPathParameters()
Description copied from interface: UriInfo
Get the values of any embedded URI template parameters. All sequences of escaped octets are decoded, equivalent to getPathParameters(true).

Specified by:
getPathParameters in interface UriInfo
Returns:
an unmodifiable map of parameter names and values
See Also:
Path, PathParam

addEncodedPathParameter

public void addEncodedPathParameter(java.lang.String name,
                                    java.lang.String value)

getEncodedPathParameterPathSegments

public MultivaluedMap<java.lang.String,PathSegment[]> getEncodedPathParameterPathSegments()

getPathParameterPathSegments

public MultivaluedMap<java.lang.String,PathSegment[]> getPathParameterPathSegments()

getPathParameters

public MultivaluedMap<java.lang.String,java.lang.String> getPathParameters(boolean decode)
Description copied from interface: UriInfo
Get the values of any embedded URI template parameters.

Specified by:
getPathParameters in interface UriInfo
Parameters:
decode - controls whether sequences of escaped octets are decoded (true) or not (false).
Returns:
an unmodifiable map of parameter names and values
See Also:
Path, PathParam

getQueryParameters

public MultivaluedMap<java.lang.String,java.lang.String> getQueryParameters()
Description copied from interface: UriInfo
Get the URI query parameters of the current request. The map keys are the names of the query parameters with any escaped characters decoded. All sequences of escaped octets in parameter values are decoded, equivalent to getQueryParameters(true).

Specified by:
getQueryParameters in interface UriInfo
Returns:
an unmodifiable map of query parameter names and values

getQueryParameters

public MultivaluedMap<java.lang.String,java.lang.String> getQueryParameters(boolean decode)
Description copied from interface: UriInfo
Get the URI query parameters of the current request. The map keys are the names of the query parameters with any escaped characters decoded.

Specified by:
getQueryParameters in interface UriInfo
Parameters:
decode - controls whether sequences of escaped octets in parameter values are decoded (true) or not (false).
Returns:
an unmodifiable map of query parameter names and values

extractParameters

protected void extractParameters(java.lang.String queryString)

getMatchedURIs

public java.util.List<java.lang.String> getMatchedURIs(boolean decode)
Description copied from interface: UriInfo
Get a read-only list of URIs for matched resources. Each entry is a relative URI that matched a resource class, a sub-resource method or a sub-resource locator. Entries do not include query parameters but do include matrix parameters if present in the request URI. Entries are ordered in reverse request URI matching order, with the current resource URI first. See UriInfo.getMatchedURIs() for an example.

Specified by:
getMatchedURIs in interface UriInfo
Parameters:
decode - controls whether sequences of escaped octets are decoded (true) or not (false).
Returns:
a read-only list of URI paths for matched resources.

getMatchedURIs

public java.util.List<java.lang.String> getMatchedURIs()
Description copied from interface: UriInfo
Get a read-only list of URIs for matched resources. Each entry is a relative URI that matched a resource class, a sub-resource method or a sub-resource locator. All sequences of escaped octets are decoded, equivalent to getMatchedURIs(true). Entries do not include query parameters but do include matrix parameters if present in the request URI. Entries are ordered in reverse request URI matching order, with the current resource URI first. E.g. given the following resource classes:

@Path("foo")
 public class FooResource {
  @GET
  public String getFoo() {...}
 

@Path("bar") public BarResource getBarResource() {...} }

public class BarResource { @GET public String getBar() {...} }

The values returned by this method based on request uri and where the method is called from are:

Request Called from Value(s)
GET /foo FooResource.getFoo foo
GET /foo/bar FooResource.getBarResource foo/bar, foo
GET /foo/bar BarResource.getBar foo/bar, foo

Specified by:
getMatchedURIs in interface UriInfo
Returns:
a read-only list of URI paths for matched resources.

getMatchedResources

public java.util.List<java.lang.Object> getMatchedResources()
Description copied from interface: UriInfo
Get a read-only list of the currently matched resource class instances. Each entry is a resource class instance that matched the request URI either directly or via a sub-resource method or a sub-resource locator. Entries are ordered according to reverse request URI matching order, with the current resource first. E.g. given the following resource classes:

@Path("foo")
 public class FooResource {
  @GET
  public String getFoo() {...}
 

@Path("bar") public BarResource getBarResource() {...} }

public class BarResource { @GET public String getBar() {...} }

The values returned by this method based on request uri and where the method is called from are:

Request Called from Value(s)
GET /foo FooResource.getFoo FooResource
GET /foo/bar FooResource.getBarResource FooResource
GET /foo/bar BarResource.getBar BarResource, FooResource

Specified by:
getMatchedResources in interface UriInfo
Returns:
a read-only list of matched resource class instances.

pushCurrentResource

public void pushCurrentResource(java.lang.Object resource)

popCurrentResource

public void popCurrentResource()

pushMatchedURI

public void pushMatchedURI(java.lang.String encoded,
                           java.lang.String decoded)

popMatchedURI

public void popMatchedURI()

getConnegExtension

public java.lang.String getConnegExtension()


Copyright © 2009. All Rights Reserved.