Class RequestMetadata
- java.lang.Object
-
- io.quarkus.reactivemessaging.http.runtime.RequestMetadata
-
- All Implemented Interfaces:
PathMetadata
- Direct Known Subclasses:
IncomingHttpMetadata
public class RequestMetadata extends Object implements PathMetadata
Common metadata class for incoming http/websockets.
-
-
Method Summary
All Methods Instance Methods Concrete 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/:useridMap<String,String>getPathParams()io.vertx.core.MultiMapgetQueryParams()
-
-
-
Method Detail
-
getQueryParams
public io.vertx.core.MultiMap getQueryParams()
-
getInvokedPath
public String getInvokedPath()
Description copied from interface:PathMetadataGet the path used to invoke this request, eg /users/fred if the path was configured as /users/:userid- Specified by:
getInvokedPathin interfacePathMetadata- Returns:
-
getConfiguredPath
public String getConfiguredPath()
Description copied from interface:PathMetadataGet the path configured for this request, eg /users/:userid for a req using PathParams- Specified by:
getConfiguredPathin interfacePathMetadata- Returns:
-
-