Uses of Interface
javax.ws.rs.core.PathSegment

Packages that use PathSegment
com.restfully.shop.services   
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.spi.container Provides support for containers and the web application that manages resource classes. 
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
 

Uses of PathSegment in com.restfully.shop.services
 

Methods in com.restfully.shop.services with parameters of type PathSegment
 String CarResource.getFromMatrixParam(String make, PathSegment car, CarResource.Color color, String year)
           
 String CarResource.getFromPathSegment(String make, PathSegment car, String year)
           
 

Method parameters in com.restfully.shop.services with type arguments of type PathSegment
 String CarResource.getFromMultipleSegments(String make, List<PathSegment> car, String year)
           
 

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

Methods in com.sun.jersey.api.core that return types with arguments of type PathSegment
 List<PathSegment> HttpRequestContext.getPathSegments()
          Get the path of the current request relative to the base URI as a list of PathSegment.
 List<PathSegment> HttpRequestContext.getPathSegments(boolean decode)
          Get the path of the current request relative to the base URI as a list of PathSegment.
 List<PathSegment> ExtendedUriInfo.getPathSegments(String name)
          Get the path segments that contains a template variable.
 List<PathSegment> ExtendedUriInfo.getPathSegments(String name, boolean decode)
          Get the path segments that contains a template variable.
 

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

Methods in com.sun.jersey.api.uri that return types with arguments of type PathSegment
static List<PathSegment> UriComponent.decodePath(String path, boolean decode)
          Decode the path component of a URI as path segments.
static List<PathSegment> UriComponent.decodePath(URI u, boolean decode)
          Decode the path component of a URI as path segments.
 

Method parameters in com.sun.jersey.api.uri with type arguments of type PathSegment
static void UriComponent.decodePathSegment(List<PathSegment> segments, String segment, boolean decode)
           
 

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

Methods in com.sun.jersey.server.impl.application that return types with arguments of type PathSegment
 List<PathSegment> WebApplicationContext.getPathSegments()
           
 List<PathSegment> WebApplicationContext.getPathSegments(boolean decode)
           
 List<PathSegment> WebApplicationContext.getPathSegments(String name)
           
 List<PathSegment> WebApplicationContext.getPathSegments(String name, boolean decode)
           
 

Uses of PathSegment in com.sun.jersey.spi.container
 

Methods in com.sun.jersey.spi.container that return types with arguments of type PathSegment
 List<PathSegment> ContainerRequest.getPathSegments()
           
 List<PathSegment> AdaptingContainerRequest.getPathSegments()
           
 List<PathSegment> ContainerRequest.getPathSegments(boolean decode)
           
 List<PathSegment> AdaptingContainerRequest.getPathSegments(boolean decode)
           
 

Uses of PathSegment in javax.ws.rs.core
 

Methods in javax.ws.rs.core that return types with arguments of type PathSegment
 List<PathSegment> UriInfo.getPathSegments()
          Get the path of the current request relative to the base URI as a list of PathSegment.
 List<PathSegment> UriInfo.getPathSegments(boolean decode)
          Get the path of the current request relative to the base URI as a list of PathSegment.
 



Copyright © 2013 Oracle Corporation. All Rights Reserved.