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

Packages that use PathSegment
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.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.sun.jersey.api.core
 

Methods in com.sun.jersey.api.core that return types with arguments of type PathSegment
 java.util.List<PathSegment> HttpRequestContext.getPathSegments()
          Get the path of the current request relative to the base URI as a list of PathSegment.
 java.util.List<PathSegment> HttpRequestContext.getPathSegments(boolean decode)
          Get the path of the current request relative to the base URI as a list of PathSegment.
 java.util.List<PathSegment> ExtendedUriInfo.getPathSegments(java.lang.String name)
          Get the path segments that contains a template variable.
 java.util.List<PathSegment> ExtendedUriInfo.getPathSegments(java.lang.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 java.util.List<PathSegment> UriComponent.decodePath(java.lang.String path, boolean decode)
          Decode the path component of a URI as path segments.
static java.util.List<PathSegment> UriComponent.decodePath(java.net.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(java.util.List<PathSegment> segments, java.lang.String segment, boolean decode)
          Decode the path segment and add it to the list of path segments.
 

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

Methods in com.sun.jersey.spi.container that return types with arguments of type PathSegment
 java.util.List<PathSegment> ContainerRequest.getPathSegments()
           
 java.util.List<PathSegment> AdaptingContainerRequest.getPathSegments()
           
 java.util.List<PathSegment> ContainerRequest.getPathSegments(boolean decode)
           
 java.util.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
 java.util.List<PathSegment> UriInfo.getPathSegments()
          Get the path of the current request relative to the base URI as a list of PathSegment.
 java.util.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.