Package io.micronaut.http.uri
Interface UriMatchInfo
- All Known Subinterfaces:
UriRouteMatch<T,
R>
- All Known Implementing Classes:
UriMatchTemplate.DefaultUriMatchInfo
public interface UriMatchInfo
The result of a call to
UriMatcher.match(java.net.URI)
.- Since:
- 1.0
- Author:
- Graeme Rocher
-
Method Summary
-
Method Details
-
getUri
String getUri()- Returns:
- The matched URI
-
getVariableValues
- Returns:
- The variable values following a successful match
-
getVariables
List<UriMatchVariable> getVariables()- Returns:
- The list of template variables
-
getVariableMap
Map<String,UriMatchVariable> getVariableMap()- Returns:
- A map of the variables.
-