io.quarkiverse.cxf.vertx.http.client.VertxHttpClientHTTPConduitFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cxf-vertx-client Show documentation
Show all versions of quarkus-cxf-vertx-client Show documentation
A CXF conduit using Vert.x Web client and an underlying HTTP client
The newest version!
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.quarkiverse.cxf.vertx.http.client;
import java.io.IOException;
import java.util.Objects;
import org.apache.cxf.Bus;
import org.apache.cxf.common.injection.NoJSR250Annotations;
import org.apache.cxf.service.model.EndpointInfo;
import org.apache.cxf.transport.http.HTTPConduit;
import org.apache.cxf.transport.http.HTTPConduitFactory;
import org.apache.cxf.transport.http.HTTPTransportFactory;
import org.apache.cxf.ws.addressing.EndpointReferenceType;
/**
*
*/
@NoJSR250Annotations
public class VertxHttpClientHTTPConduitFactory implements HTTPConduitFactory {
public VertxHttpClientHTTPConduitFactory() {
super();
}
@Override
public HTTPConduit createConduit(HTTPTransportFactory f, Bus b, EndpointInfo localInfo, EndpointReferenceType target)
throws IOException {
final HttpClientPool httpClientPool = Objects.requireNonNull(b.getExtension(HttpClientPool.class),
"HttpClientPool in org.apache.cxf.Bus");
return new VertxHttpClientHTTPConduit(b, localInfo, target, httpClientPool);
}
}