List of usage examples for io.vertx.core.http HttpServerRequest interface-usage
From source file com.groupon.vertx.http.HttpServerRequestWrapper.java
/**
* Base class for wrapping a Vert.x HttpServerRequest so that methods on it can be intercepted.
*
* @author Gil Markham (gil at groupon dot com)
* @author Trevor Mack (tmack at groupon dot com)
* @since 2.1.6
From source file de.braintags.netrelay.util.MockHttpServerRequest.java
/**
*
*
* @author Michael Remme
*
*/
From source file io.apiman.gateway.platforms.vertx3.api.Router2ResteasyRequestAdapter.java
/** * @author Marc Savy {@literal <marc@rhymewithgravy.com>} */ public class Router2ResteasyRequestAdapter implements HttpServerRequest { private HttpServerRequest request;
From source file io.helixservice.feature.restservice.FakeHttpServerRequest.java
public class FakeHttpServerRequest implements HttpServerRequest { Handler<Buffer> dataHandler; Handler<Void> endHandler; private String uri; private MultiMap params;
From source file org.entcore.common.http.request.JsonHttpServerRequest.java
public class JsonHttpServerRequest implements HttpServerRequest { private JsonObject object; private HttpServerResponse response; public JsonHttpServerRequest(JsonObject object) {
From source file org.sfs.SfsRequest.java
public class SfsRequest implements HttpServerRequest { private final HttpServerRequest httpServerRequest; private final VertxContext<Server> vertxContext; private Map<String, Object> context; private boolean wroteData = false;