Uses of Class
com.sun.jersey.api.uri.UriTemplate

Packages that use UriTemplate
com.sun.jersey.api.core Provides support for configuration. 
com.sun.jersey.api.uri Provides support for JAX-RS URI templates and encoding/decoding URI components. 
com.sun.jersey.server.impl.application   
com.sun.jersey.server.impl.model.method   
com.sun.jersey.server.impl.uri   
com.sun.jersey.server.impl.uri.rules   
com.sun.jersey.spi.uri.rules Provides support for hierarchical matching and accepting of URIs. 
 

Uses of UriTemplate in com.sun.jersey.api.core
 

Methods in com.sun.jersey.api.core that return types with arguments of type UriTemplate
 List<UriTemplate> ExtendedUriInfo.getMatchedTemplates()
          Get a read-only list of UriTemplate for matched resources.
 

Uses of UriTemplate in com.sun.jersey.api.uri
 

Fields in com.sun.jersey.api.uri declared as UriTemplate
static UriTemplate UriTemplate.EMPTY
          The empty URI template that matches the null or empty URI path
 

Fields in com.sun.jersey.api.uri with type parameters of type UriTemplate
static Comparator<UriTemplate> UriTemplate.COMPARATOR
          Order the templates according according to JAX-RS.
 

Uses of UriTemplate in com.sun.jersey.server.impl.application
 

Methods in com.sun.jersey.server.impl.application that return types with arguments of type UriTemplate
 List<UriTemplate> WebApplicationContext.getMatchedTemplates()
           
 

Methods in com.sun.jersey.server.impl.application with parameters of type UriTemplate
 void WebApplicationContext.pushMatch(UriTemplate template, List<String> names)
           
 

Uses of UriTemplate in com.sun.jersey.server.impl.model.method
 

Methods in com.sun.jersey.server.impl.model.method that return UriTemplate
 UriTemplate ResourceMethod.getTemplate()
           
 

Constructors in com.sun.jersey.server.impl.model.method with parameters of type UriTemplate
ResourceHttpMethod(ResourceMethodDispatcherFactory df, FilterFactory ff, List<ResourceFilter> resourceFilters, UriTemplate template, AbstractResourceMethod arm)
           
ResourceHttpMethod(ResourceMethodDispatcherFactory df, FilterFactory ff, UriTemplate template, AbstractResourceMethod arm)
           
ResourceMethod(String httpMethod, UriTemplate template, List<? extends MediaType> consumeMime, List<? extends MediaType> produceMime, boolean isProducesDeclared, RequestDispatcher dispatcher)
           
ResourceMethod(String httpMethod, UriTemplate template, List<? extends MediaType> consumeMime, List<? extends MediaType> produceMime, boolean isProducesDeclared, RequestDispatcher dispatcher, List<ContainerRequestFilter> requestFilters, List<ContainerResponseFilter> responseFilters)
           
 

Uses of UriTemplate in com.sun.jersey.server.impl.uri
 

Subclasses of UriTemplate in com.sun.jersey.server.impl.uri
 class PathTemplate
          A URI template for a URI path.
 

Methods in com.sun.jersey.server.impl.uri that return UriTemplate
 UriTemplate PathPattern.getTemplate()
           
 

Constructors in com.sun.jersey.server.impl.uri with parameters of type UriTemplate
PathPattern(UriTemplate template)
           
PathPattern(UriTemplate template, String rightHandSide)
           
 

Uses of UriTemplate in com.sun.jersey.server.impl.uri.rules
 

Methods in com.sun.jersey.server.impl.uri.rules that return UriTemplate
protected  UriTemplate BaseRule.getTemplate()
           
 

Constructors in com.sun.jersey.server.impl.uri.rules with parameters of type UriTemplate
BaseRule(UriTemplate template)
           
ResourceClassRule(UriTemplate template, Class resourceClass)
           
ResourceObjectRule(UriTemplate template, Object resourceObject)
           
SubLocatorRule(UriTemplate template, Method m, List<Injectable> is, List<ContainerRequestFilter> requestFilters, List<ContainerResponseFilter> responseFilters)
           
 

Uses of UriTemplate in com.sun.jersey.spi.uri.rules
 

Methods in com.sun.jersey.spi.uri.rules with parameters of type UriTemplate
 void UriRuleContext.pushMatch(UriTemplate template, List<String> names)
          Push a match.
 



Copyright © 2013 Oracle Corporation. All Rights Reserved.