public class UriRoutingContext extends Object implements RoutingContext
Constructor and Description |
---|
UriRoutingContext(ContainerRequest requestContext)
Injection constructor.
|
Modifier and Type | Method and Description |
---|---|
URI |
getAbsolutePath() |
UriBuilder |
getAbsolutePathBuilder() |
URI |
getBaseUri() |
UriBuilder |
getBaseUriBuilder() |
Endpoint |
getEndpoint()
Get the matched server-side endpoint if present, or
null otherwise. |
String |
getFinalMatchingGroup()
Get the final matching group of the last successful request URI routing
pattern
match result . |
List<Resource> |
getLocatorSubResources()
Get the list of sub resources returned from resource locators during matching.
|
Throwable |
getMappedThrowable()
Get the throwable that was mapped to a response.
|
Resource |
getMatchedModelResource()
Get matched
model resource from which the matched resource method
was invoked. |
List<ResourceMethod> |
getMatchedResourceLocators()
Get resource locators matched since beginning of a matching.
|
ResourceMethod |
getMatchedResourceMethod()
Get matched
resource method that is invoked. |
List<Object> |
getMatchedResources() |
LinkedList<MatchResult> |
getMatchedResults()
Get a read-only list of
MatchResult for matched resources. |
List<RuntimeResource> |
getMatchedRuntimeResources()
Return all matched
runtime resources including runtime resources
based on child resources. |
List<UriTemplate> |
getMatchedTemplates()
Get a read-only list of
UriTemplate for matched resources. |
List<String> |
getMatchedURIs() |
List<String> |
getMatchedURIs(boolean decode) |
String |
getPath() |
String |
getPath(boolean decode) |
MultivaluedMap<String,String> |
getPathParameters() |
MultivaluedMap<String,String> |
getPathParameters(boolean decode) |
List<PathSegment> |
getPathSegments() |
List<PathSegment> |
getPathSegments(boolean decode) |
List<PathSegment> |
getPathSegments(String name)
Get the path segments that contain a template variable.
|
List<PathSegment> |
getPathSegments(String name,
boolean decode)
Get the path segments that contain a template variable.
|
MultivaluedMap<String,String> |
getQueryParameters() |
MultivaluedMap<String,String> |
getQueryParameters(boolean decode) |
URI |
getRequestUri() |
UriBuilder |
getRequestUriBuilder() |
Class<?> |
getResourceClass() |
Method |
getResourceMethod() |
void |
invalidateUriComponentViews()
Invalidate internal URI component cache views.
|
Object |
peekMatchedResource()
Peek the last resource object that successfully matched the request URI.
|
void |
pushLeftHandPath()
Add currently matched left-hand side part of request path to the list of
matched paths returned by
UriInfo.getMatchedURIs() . |
void |
pushLocatorSubResource(Resource subResourceFromLocator)
Push
sub resource returned from a sub resource locator method. |
void |
pushMatchedLocator(ResourceMethod resourceLocator)
Push the matched
sub resource locator method . |
void |
pushMatchedResource(Object resource)
Push the resource that matched the request URI.
|
void |
pushMatchedRuntimeResource(RuntimeResource runtimeResource)
Push a matched
runtime resource that was visited during matching phase. |
void |
pushMatchResult(MatchResult matchResult)
Push the result of the successful request URI routing pattern match.
|
void |
pushTemplates(UriTemplate resourceTemplate,
UriTemplate methodTemplate)
Push matched request URI routing pattern
templates
for a single matched method. |
URI |
relativize(URI uri) |
URI |
resolve(URI uri) |
void |
setEndpoint(Endpoint endpoint)
Set the matched server-side endpoint.
|
void |
setMappedThrowable(Throwable mappedThrowable)
Set the throwable that was mapped to a response.
|
void |
setMatchedResourceMethod(ResourceMethod resourceMethod)
Set the matched
resource method . |
public UriRoutingContext(ContainerRequest requestContext)
requestContext
- request reference.public void pushMatchResult(MatchResult matchResult)
RoutingContext
pushMatchResult
in interface RoutingContext
matchResult
- successful request URI routing pattern
match result
.public void pushMatchedResource(Object resource)
RoutingContext
pushMatchedResource
in interface RoutingContext
resource
- instance of the resource that matched the request URI.public Object peekMatchedResource()
RoutingContext
peekMatchedResource
in interface RoutingContext
RoutingContext.pushMatchedResource(java.lang.Object)
public void pushMatchedLocator(ResourceMethod resourceLocator)
RoutingContext
sub resource locator method
.pushMatchedLocator
in interface RoutingContext
resourceLocator
- Sub resource locator method.public void pushLeftHandPath()
RoutingContext
UriInfo.getMatchedURIs()
.
Left-hand side request path is the request path excluding the suffix
part of the path matched by the final
matching group
of the last successful request URI routing pattern.pushLeftHandPath
in interface RoutingContext
public void pushTemplates(UriTemplate resourceTemplate, UriTemplate methodTemplate)
RoutingContext
templates
for a single matched method.
In case only a single path matching has been performed on the resource (in case of resource methods,
only the resource path is matched), the method template should be passed as null
.
In case a path matching has been performed on both a resource and method paths
(in case of sub-resource methods and locators), both templates (resource and method) must be specified.
pushTemplates
in interface RoutingContext
resourceTemplate
- resource URI template that should be pushed.methodTemplate
- (sub-resource) method or locator URI template that should be pushed.public String getFinalMatchingGroup()
RoutingContext
match result
. Also known as right-hand path.
May be empty but is never null
.
getFinalMatchingGroup
in interface RoutingContext
public LinkedList<MatchResult> getMatchedResults()
ExtendedUriInfo
MatchResult
for matched resources.
Entries are ordered in reverse request URI matching order, with the
root resource match result last.getMatchedResults
in interface ExtendedUriInfo
public void setEndpoint(Endpoint endpoint)
RoutingContext
setEndpoint
in interface RoutingContext
endpoint
- matched server-side endpoint.public Endpoint getEndpoint()
RoutingContext
null
otherwise.getEndpoint
in interface RoutingContext
null
if not available.public void setMatchedResourceMethod(ResourceMethod resourceMethod)
RoutingContext
resource method
. This method needs to be called only if the method was
matched. This method should be called only for setting the final resource method and not for setting sub resource
locators invoked during matching.setMatchedResourceMethod
in interface RoutingContext
resourceMethod
- Resource method that was matched.public void pushMatchedRuntimeResource(RuntimeResource runtimeResource)
RoutingContext
runtime resource
that was visited during matching phase. This method must
be called for any matched runtime resource.pushMatchedRuntimeResource
in interface RoutingContext
runtimeResource
- Runtime resource that was matched during matching.public void pushLocatorSubResource(Resource subResourceFromLocator)
RoutingContext
sub resource
returned from a sub resource locator method. The pushed
subResourceFromLocator
is the final model of a sub resource which is already enhanced by
model processors
and
validated.pushLocatorSubResource
in interface RoutingContext
subResourceFromLocator
- Resource constructed from result of sub resource locator method.public URI getAbsolutePath()
getAbsolutePath
in interface UriInfo
public UriBuilder getAbsolutePathBuilder()
getAbsolutePathBuilder
in interface UriInfo
public URI getBaseUri()
getBaseUri
in interface UriInfo
public UriBuilder getBaseUriBuilder()
getBaseUriBuilder
in interface UriInfo
public List<Object> getMatchedResources()
getMatchedResources
in interface UriInfo
public List<String> getMatchedURIs()
getMatchedURIs
in interface UriInfo
public List<String> getMatchedURIs(boolean decode)
getMatchedURIs
in interface UriInfo
public MultivaluedMap<String,String> getPathParameters()
getPathParameters
in interface UriInfo
public MultivaluedMap<String,String> getPathParameters(boolean decode)
getPathParameters
in interface UriInfo
public List<PathSegment> getPathSegments()
getPathSegments
in interface UriInfo
public List<PathSegment> getPathSegments(boolean decode)
getPathSegments
in interface UriInfo
public MultivaluedMap<String,String> getQueryParameters()
getQueryParameters
in interface UriInfo
public MultivaluedMap<String,String> getQueryParameters(boolean decode)
getQueryParameters
in interface UriInfo
public void invalidateUriComponentViews()
This method needs to be called if request URI information changes.
public URI getRequestUri()
getRequestUri
in interface UriInfo
public UriBuilder getRequestUriBuilder()
getRequestUriBuilder
in interface UriInfo
public Throwable getMappedThrowable()
ExtendedUriInfo
A response filter or a message body writer may utilize this method to determine if a resource method was invoked but did not return a response because an exception was thrown from the resource method, or the resource method returned but a response filter threw an exception.
getMappedThrowable
in interface ExtendedUriInfo
public void setMappedThrowable(Throwable mappedThrowable)
RoutingContext
setMappedThrowable
in interface RoutingContext
mappedThrowable
- throwable that was mapped to a response.ExtendedUriInfo.getMappedThrowable()
public List<UriTemplate> getMatchedTemplates()
ExtendedUriInfo
UriTemplate
for matched resources.
Each entry is a URI template that is the value of the
Path
that is a partial path that matched a resource
class, a sub-resource method or a sub-resource locator.
Entries are ordered in reverse request URI matching order, with the
root resource URI template last.getMatchedTemplates
in interface ExtendedUriInfo
public List<PathSegment> getPathSegments(String name)
ExtendedUriInfo
getPathSegments(true)
.getPathSegments
in interface ExtendedUriInfo
name
- the template variable namepublic List<PathSegment> getPathSegments(String name, boolean decode)
ExtendedUriInfo
getPathSegments
in interface ExtendedUriInfo
name
- the template variable namedecode
- controls whether sequences of escaped octets are decoded
(true) or not (false).public Method getResourceMethod()
getResourceMethod
in interface ResourceInfo
public Class<?> getResourceClass()
getResourceClass
in interface ResourceInfo
public List<RuntimeResource> getMatchedRuntimeResources()
ExtendedUriInfo
runtime resources
including runtime resources
based on child resources. The list is ordered so that the runtime resource
currently being processed is the first element in the list.
The following example
@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 | RuntimeResource["/foo"] |
GET /foo/bar | FooResource.getBarResource | RuntimeResource["foo/bar"], Resource["foo"] |
GET /foo/bar | BarResource.getBar | RuntimeResource[no path; based on BarResource.class], RuntimeResource["foo/bar"], RuntimeResource["foo"] |
getMatchedRuntimeResources
in interface ExtendedUriInfo
public ResourceMethod getMatchedResourceMethod()
ExtendedUriInfo
resource method
that is invoked.
Note that sub resource locator is not not considered as a matched resource method and calling the method from
sub resource locator will therefore return null.getMatchedResourceMethod
in interface ExtendedUriInfo
public List<ResourceMethod> getMatchedResourceLocators()
ExtendedUriInfo
The resource locator is
a resource method
which is annotated by the @Path
and returns a sub resource.
getMatchedResourceLocators
in interface ExtendedUriInfo
public List<Resource> getLocatorSubResources()
ExtendedUriInfo
getLocatorSubResources
in interface ExtendedUriInfo
public Resource getMatchedModelResource()
ExtendedUriInfo
model resource
from which the matched
resource method
was invoked. The resource can also be a child if the matched method is a sub resource method.
Note that method return only resource containing finally matched resource method
and not intermediary processed resources (parent resources or resources containing sub resource locators).getMatchedModelResource
in interface ExtendedUriInfo
public URI relativize(URI uri)
relativize
in interface UriInfo
Copyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.