Package | Description |
---|---|
javax.ws.rs.core |
Low-level interfaces and annotations used to create RESTful service
resources.
|
org.glassfish.jersey.server |
Jersey server-side classes.
|
org.glassfish.jersey.uri |
Common Jersey classes that provide support for JAX-RS URI templates and
encoding/decoding of URI components.
|
Modifier and Type | Method and Description |
---|---|
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 . |
Modifier and Type | Method and Description |
---|---|
List<PathSegment> |
ExtendedUriInfo.getPathSegments(String name)
Get the path segments that contain a template variable.
|
List<PathSegment> |
ExtendedUriInfo.getPathSegments(String name,
boolean decode)
Get the path segments that contain a template variable.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
static void |
UriComponent.decodePathSegment(List<PathSegment> segments,
String segment,
boolean decode)
Decode the path segment and add it to the list of path segments.
|
Copyright © 2007-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.