Example usage for io.vertx.core.http HttpMethod CONNECT

List of usage examples for io.vertx.core.http HttpMethod CONNECT

Introduction

In this page you can find the example usage for io.vertx.core.http HttpMethod CONNECT.

Prototype

HttpMethod CONNECT

To view the source code for io.vertx.core.http HttpMethod CONNECT.

Click Source Link

Usage

From source file:io.gravitee.gateway.http.vertx.VertxHttpClient.java

License:Apache License

private HttpMethod convert(io.gravitee.common.http.HttpMethod httpMethod) {
    switch (httpMethod) {
    case CONNECT:
        return HttpMethod.CONNECT;
    case DELETE://from  w ww  .  j a v a 2 s. co  m
        return HttpMethod.DELETE;
    case GET:
        return HttpMethod.GET;
    case HEAD:
        return HttpMethod.HEAD;
    case OPTIONS:
        return HttpMethod.OPTIONS;
    case PATCH:
        return HttpMethod.PATCH;
    case POST:
        return HttpMethod.POST;
    case PUT:
        return HttpMethod.PUT;
    case TRACE:
        return HttpMethod.TRACE;
    }

    return null;
}