io.knotx.adapter.service.http.impl.HttpServiceAdapterProxyImpl Maven / Gradle / Ivy
/*
* Copyright (C) 2016 Cognifide Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.knotx.adapter.service.http.impl;
import io.knotx.adapter.AbstractAdapterProxy;
import io.knotx.adapter.common.configuration.ServiceAdapterOptions;
import io.knotx.adapter.common.http.HttpClientFacade;
import io.knotx.dataobjects.AdapterRequest;
import io.knotx.dataobjects.AdapterResponse;
import io.reactivex.Single;
import io.vertx.core.http.HttpMethod;
import io.vertx.reactivex.core.Vertx;
import io.vertx.reactivex.ext.web.client.WebClient;
public class HttpServiceAdapterProxyImpl extends AbstractAdapterProxy {
private HttpClientFacade httpClientFacade;
public HttpServiceAdapterProxyImpl(Vertx vertx, ServiceAdapterOptions configuration) {
this.httpClientFacade = new HttpClientFacade(
WebClient.create(vertx, configuration.getClientOptions()), configuration);
}
@Override
protected Single processRequest(AdapterRequest message) {
return httpClientFacade.process(message, HttpMethod.GET)
.map(new AdapterResponse()::setResponse);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy