Class UriTemplatePathSpec
java.lang.Object
org.eclipse.jetty.http.pathmap.AbstractPathSpec
org.eclipse.jetty.http.pathmap.UriTemplatePathSpec
- All Implemented Interfaces:
Comparable<PathSpec>, PathSpec
PathSpec for URI Template based declarations
- See Also:
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Stringprivate final PathSpecGroupprivate final StringThe logical (simplified) declarationprivate final intprivate final Patternprivate final intprivate final String[]private static final Loggerprivate static final Patternprivate static final StringReserved Symbols in URI Template variableprivate static final StringAllowed Symbols in a URI Template variable -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static voidassertIsValidVariableLiteral(String variable, String declaration) Validate variable literal name, per RFC6570, Section 2.1 LiteralsintThe as-provided path spec.getGroup()The spec group.protected MatchergetMatcher(String path) intGet the number of path elements that this path spec declares.getPathInfo(String path) Return the portion of the path that is after the path spec.getPathMatch(String path) Return the portion of the path that matches a path spec.getPathParams(String path) A simple prefix match for the pathspec or nullintThe length of the spec.A simple suffix match for the pathspec or nullintString[]private static booleanisValidBasicLiteralCodepoint(int codepoint, String declaration) Get the complete matched details of the provided path.booleanTest to see if the provided path matches this path specMethods inherited from class AbstractPathSpec
equals, hashCode, toString
-
Field Details
-
LOG
-
VARIABLE_PATTERN
-
VARIABLE_RESERVED
-
VARIABLE_SYMBOLS
-
FORBIDDEN_SEGMENTS
-
_declaration
-
_group
-
_pathDepth
private final int _pathDepth -
_specLength
private final int _specLength -
_pattern
-
_variables
-
_logicalDeclaration
The logical (simplified) declaration
-
-
Constructor Details
-
UriTemplatePathSpec
-
-
Method Details
-
assertIsValidVariableLiteral
-
isValidBasicLiteralCodepoint
-
compareTo
- Specified by:
compareToin interfaceComparable<PathSpec>- Overrides:
compareToin classAbstractPathSpec
-
getPathParams
-
getMatcher
-
getSpecLength
public int getSpecLength()Description copied from interface:PathSpecThe length of the spec.- Returns:
- the length of the spec.
-
getGroup
-
getPathDepth
public int getPathDepth()Description copied from interface:PathSpecGet the number of path elements that this path spec declares.This is used to determine longest match logic.
- Returns:
- the depth of the path segments that this spec declares
-
getPathInfo
-
getPathMatch
-
getDeclaration
-
getPrefix
-
getSuffix
-
getPattern
-
matches
-
matched
Description copied from interface:PathSpecGet the complete matched details of the provided path.- Parameters:
path- the path to test- Returns:
- the matched details, if a match was possible, or null if not able to be matched.
-
getVariableCount
public int getVariableCount() -
getVariables
-