Class MatchingResult
- java.lang.Object
-
- org.restlet.ext.jaxrs.internal.util.MatchingResult
-
@Deprecated public class MatchingResult extends java.lang.ObjectDeprecated.Will be removed in next minor release.Wraps a result of a matching of a concrete path against a path pattern.
-
-
Field Summary
Fields Modifier and Type Field Description private RemainingPathfinalCapturingGroupDeprecated.private java.lang.StringmatchedDeprecated.private java.util.Map<java.lang.String,java.lang.String>variablesDeprecated.
-
Constructor Summary
Constructors Constructor Description MatchingResult(java.lang.String matched, java.util.Map<java.lang.String,java.lang.String> variables, java.lang.String finalCapturingGroup)Deprecated.Creates a new MatchingResult
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description RemainingPathgetFinalCapturingGroup()Deprecated.Returns the final capturing group.java.lang.StringgetMatched()Deprecated.Returns the matched uri path.java.util.Map<java.lang.String,java.lang.String>getVariables()Deprecated.Returns the variables found in the given @Path
-
-
-
Field Detail
-
finalCapturingGroup
private final RemainingPath finalCapturingGroup
Deprecated.
-
matched
private final java.lang.String matched
Deprecated.
-
variables
private final java.util.Map<java.lang.String,java.lang.String> variables
Deprecated.
-
-
Method Detail
-
getFinalCapturingGroup
public RemainingPath getFinalCapturingGroup()
Deprecated.Returns the final capturing group. Starts ever with a slash.- Returns:
- Returns the final capturing group.
-
getMatched
public java.lang.String getMatched()
Deprecated.Returns the matched uri path.- Returns:
- Returns the matched uri path.
-
getVariables
public java.util.Map<java.lang.String,java.lang.String> getVariables()
Deprecated.Returns the variables found in the given @Path- Returns:
- Returns the variables found in the given @
Path
-
-