Uses of Class
org.glassfish.jersey.uri.UriTemplate
-
Packages that use UriTemplate Package Description org.glassfish.jersey.server Jersey server-side classes.org.glassfish.jersey.server.internal.routing Jersey server-side internal resource routing classes.org.glassfish.jersey.uri Common Jersey classes that provide support for JAX-RS URI templates and encoding/decoding of URI components. -
-
Uses of UriTemplate in org.glassfish.jersey.server
Methods in org.glassfish.jersey.server that return types with arguments of type UriTemplate Modifier and Type Method Description java.util.List<UriTemplate>
ExtendedUriInfo. getMatchedTemplates()
Get a read-only list ofUriTemplate
for matched resources. -
Uses of UriTemplate in org.glassfish.jersey.server.internal.routing
Fields in org.glassfish.jersey.server.internal.routing declared as UriTemplate Modifier and Type Field Description private UriTemplate
PushMatchedTemplateRouter. methodTemplate
private UriTemplate
PushMatchedTemplateRouter. resourceTemplate
Fields in org.glassfish.jersey.server.internal.routing with type parameters of type UriTemplate Modifier and Type Field Description private java.util.LinkedList<UriTemplate>
UriRoutingContext. templates
Methods in org.glassfish.jersey.server.internal.routing that return types with arguments of type UriTemplate Modifier and Type Method Description java.util.List<UriTemplate>
UriRoutingContext. getMatchedTemplates()
Methods in org.glassfish.jersey.server.internal.routing with parameters of type UriTemplate Modifier and Type Method Description private int
UriRoutingContext. getLastPathParameterIndex(java.lang.String name, UriTemplate t)
private PushMatchedTemplateRouter
RuntimeModelBuilder. getTemplateRouter(boolean subResourceMode, UriTemplate parentTemplate, UriTemplate childTemplate)
private void
UriRoutingContext. pushMatchedTemplateValues(UriTemplate template, java.util.regex.MatchResult matchResult)
void
RoutingContext. pushTemplates(UriTemplate resourceTemplate, UriTemplate methodTemplate)
Push matched request URI routing patterntemplates
for a single matched method.void
UriRoutingContext. pushTemplates(UriTemplate resourceTemplate, UriTemplate methodTemplate)
Constructors in org.glassfish.jersey.server.internal.routing with parameters of type UriTemplate Constructor Description PushMatchedTemplateRouter(UriTemplate resourceTemplate)
Create a new instance of the push matched template router.PushMatchedTemplateRouter(UriTemplate resourceTemplate, UriTemplate methodTemplate)
Create a new instance of the push matched template router. -
Uses of UriTemplate in org.glassfish.jersey.uri
Subclasses of UriTemplate in org.glassfish.jersey.uri Modifier and Type Class Description class
PathTemplate
A URI template for a URI path.Fields in org.glassfish.jersey.uri declared as UriTemplate Modifier and Type Field Description static UriTemplate
UriTemplate. EMPTY
The empty URI template that matches thenull
or empty URI path.private UriTemplate
PathPattern. template
Fields in org.glassfish.jersey.uri with type parameters of type UriTemplate Modifier and Type Field Description static java.util.Comparator<UriTemplate>
UriTemplate. COMPARATOR
Order the templates according to JAX-RS specification.Methods in org.glassfish.jersey.uri that return UriTemplate Modifier and Type Method Description UriTemplate
PathPattern. getTemplate()
-