Package org.eclipse.jetty.http.pathmap
Class ServletPathSpec
- java.lang.Object
-
- org.eclipse.jetty.http.pathmap.AbstractPathSpec
-
- org.eclipse.jetty.http.pathmap.ServletPathSpec
-
- All Implemented Interfaces:
Comparable<PathSpec>
,PathSpec
@Deprecated(since="2021-05-27") public class ServletPathSpec extends AbstractPathSpec
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description ServletPathSpec(String servletPathSpec)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getDeclaration()
Deprecated.The as-provided path spec.PathSpecGroup
getGroup()
Deprecated.The spec group.int
getPathDepth()
Deprecated.Get the number of path elements that this path spec declares.String
getPathInfo(String path)
Deprecated.Return the portion of the path that is after the path spec.String
getPathMatch(String path)
Deprecated.Return the portion of the path that matches a path spec.String
getPrefix()
Deprecated.A simple prefix match for the pathspec or nullint
getSpecLength()
Deprecated.The length of the spec.String
getSuffix()
Deprecated.A simple suffix match for the pathspec or nullboolean
matches(String path)
Deprecated.Test to see if the provided path matches this path specstatic String
normalize(String pathSpec)
Deprecated.If a servlet or filter path mapping isn't a suffix mapping, ensure it starts with '/'-
Methods inherited from class org.eclipse.jetty.http.pathmap.AbstractPathSpec
compareTo, equals, hashCode, toString
-
-
-
-
Constructor Detail
-
ServletPathSpec
public ServletPathSpec(String servletPathSpec)
Deprecated.
-
-
Method Detail
-
normalize
public static String normalize(String pathSpec)
Deprecated.If a servlet or filter path mapping isn't a suffix mapping, ensure it starts with '/'- Parameters:
pathSpec
- the servlet or filter mapping pattern- Returns:
- the pathSpec prefixed by '/' if appropriate
-
getSpecLength
public int getSpecLength()
Deprecated.Description copied from interface:PathSpec
The length of the spec.- Returns:
- the length of the spec.
-
getGroup
public PathSpecGroup getGroup()
Deprecated.Description copied from interface:PathSpec
The spec group.- Returns:
- the spec group.
-
getPathDepth
public int getPathDepth()
Deprecated.Description copied from interface:PathSpec
Get 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:PathSpec
Return 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:PathSpec
Return 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:PathSpec
The as-provided path spec.- Returns:
- the as-provided path spec
-
getPrefix
public String getPrefix()
Deprecated.Description copied from interface:PathSpec
A 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:PathSpec
A simple suffix match for the pathspec or null- Returns:
- A simple suffix match for the pathspec or null
-
-