Interface PathMetadata
-
- All Known Implementing Classes:
IncomingHttpMetadata,RequestMetadata
public interface PathMetadataMetadata for a request path. Invoked/Configured path may be different when using PathParameters.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetConfiguredPath()Get the path configured for this request, eg /users/:userid for a req using PathParamsStringgetInvokedPath()Get the path used to invoke this request, eg /users/fred if the path was configured as /users/:userid
-
-
-
Method Detail
-
getInvokedPath
String getInvokedPath()
Get the path used to invoke this request, eg /users/fred if the path was configured as /users/:userid- Returns:
-
getConfiguredPath
String getConfiguredPath()
Get the path configured for this request, eg /users/:userid for a req using PathParams- Returns:
-
-