Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
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 © 2016 Oracle Corporation. All Rights Reserved.