Package org.eclipse.jetty.http.pathmap
Class RegexPathSpec
- java.lang.Object
-
- org.eclipse.jetty.http.pathmap.AbstractPathSpec
-
- org.eclipse.jetty.http.pathmap.RegexPathSpec
-
- All Implemented Interfaces:
Comparable<PathSpec>,PathSpec
@Deprecated(since="2021-05-27") public class RegexPathSpec extends AbstractPathSpec
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description RegexPathSpec(String regex)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetDeclaration()Deprecated.The as-provided path spec.PathSpecGroupgetGroup()Deprecated.The spec group.intgetPathDepth()Deprecated.Get the number of path elements that this path spec declares.StringgetPathInfo(String path)Deprecated.Return the portion of the path that is after the path spec.StringgetPathMatch(String path)Deprecated.Return the portion of the path that matches a path spec.PatterngetPattern()Deprecated.StringgetPrefix()Deprecated.A simple prefix match for the pathspec or nullintgetSpecLength()Deprecated.The length of the spec.StringgetSuffix()Deprecated.A simple suffix match for the pathspec or nullbooleanmatches(String path)Deprecated.Test to see if the provided path matches this path spec-
Methods inherited from class org.eclipse.jetty.http.pathmap.AbstractPathSpec
compareTo, equals, hashCode, toString
-
-
-
-
Constructor Detail
-
RegexPathSpec
public RegexPathSpec(String regex)
Deprecated.
-
-
Method Detail
-
getSpecLength
public int getSpecLength()
Deprecated.Description copied from interface:PathSpecThe length of the spec.- Returns:
- the length of the spec.
-
getGroup
public PathSpecGroup getGroup()
Deprecated.Description copied from interface:PathSpecThe spec group.- Returns:
- the spec group.
-
getPathDepth
public int getPathDepth()
Deprecated.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
public String getPathInfo(String path)
Deprecated.Description copied from interface:PathSpecReturn the portion of the path that is after the path spec.- Parameters:
path- the path to match against- Returns:
- the path info portion of the string
-
getPathMatch
public String getPathMatch(String path)
Deprecated.Description copied from interface:PathSpecReturn the portion of the path that matches a path spec.- Parameters:
path- the path to match against- Returns:
- the match, or null if no match at all
-
getDeclaration
public String getDeclaration()
Deprecated.Description copied from interface:PathSpecThe as-provided path spec.- Returns:
- the as-provided path spec
-
getPrefix
public String getPrefix()
Deprecated.Description copied from interface:PathSpecA simple prefix match for the pathspec or null- Returns:
- A simple prefix match for the pathspec or null
-
getSuffix
public String getSuffix()
Deprecated.Description copied from interface:PathSpecA simple suffix match for the pathspec or null- Returns:
- A simple suffix match for the pathspec or null
-
getPattern
public Pattern getPattern()
Deprecated.
-
-