Uses of Interface
jakarta.ws.rs.core.PathSegment
-
Packages that use PathSegment Package Description jakarta.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. -
-
Uses of PathSegment in jakarta.ws.rs.core
Methods in jakarta.ws.rs.core that return types with arguments of type PathSegment Modifier and Type Method Description List<PathSegment>UriInfo. getPathSegments()Get the path of the current request relative to the base URI as a list ofPathSegment.List<PathSegment>UriInfo. getPathSegments(boolean decode)Get the path of the current request relative to the base URI as a list ofPathSegment. -
Uses of PathSegment in org.glassfish.jersey.server
Methods in org.glassfish.jersey.server that return types with arguments of type PathSegment Modifier and Type Method 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. -
Uses of PathSegment in org.glassfish.jersey.uri
Methods in org.glassfish.jersey.uri that return types with arguments of type PathSegment Modifier and Type Method 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.Method parameters in org.glassfish.jersey.uri with type arguments of type PathSegment Modifier and Type Method Description static voidUriComponent. decodePathSegment(List<PathSegment> segments, String segment, boolean decode)Decode the path segment and add it to the list of path segments.
-