Class AbstractHttpRequestHandler
- java.lang.Object
-
- io.quarkus.kafka.client.runtime.ui.AbstractHttpRequestHandler
-
- All Implemented Interfaces:
io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>
- Direct Known Subclasses:
KafkaUiHandler
public abstract class AbstractHttpRequestHandler extends Object implements io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>
-
-
Constructor Summary
Constructors Constructor Description AbstractHttpRequestHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voiddoHandle(io.vertx.ext.web.RoutingContext ctx)protected StringgetRequestPath(io.vertx.ext.web.RoutingContext event)voidhandle(io.vertx.ext.web.RoutingContext ctx)abstract voidhandleGet(io.vertx.ext.web.RoutingContext event)abstract voidhandleOptions(io.vertx.ext.web.RoutingContext event)abstract voidhandlePost(io.vertx.ext.web.RoutingContext event)
-
-
-
Method Detail
-
handle
public void handle(io.vertx.ext.web.RoutingContext ctx)
- Specified by:
handlein interfaceio.vertx.core.Handler<io.vertx.ext.web.RoutingContext>
-
doHandle
public void doHandle(io.vertx.ext.web.RoutingContext ctx)
-
handlePost
public abstract void handlePost(io.vertx.ext.web.RoutingContext event)
-
handleGet
public abstract void handleGet(io.vertx.ext.web.RoutingContext event)
-
handleOptions
public abstract void handleOptions(io.vertx.ext.web.RoutingContext event)
-
getRequestPath
protected String getRequestPath(io.vertx.ext.web.RoutingContext event)
-
-