Package io.quarkiverse.cxf
Class QuarkusHttpConduitConfigurer
java.lang.Object
io.quarkiverse.cxf.QuarkusHttpConduitConfigurer
- All Implemented Interfaces:
org.apache.cxf.transport.http.HTTPConduitConfigurer
@ApplicationScoped
public class QuarkusHttpConduitConfigurer
extends Object
implements org.apache.cxf.transport.http.HTTPConduitConfigurer
A
HTTPConduitConfigurer able to configure conduits by address.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddConfigurer(String address, Consumer<org.apache.cxf.transport.http.HTTPConduit> configurer) Add aconfigurerthat will be applied only to the conduit associated with the givenaddress.void
-
Constructor Details
-
QuarkusHttpConduitConfigurer
public QuarkusHttpConduitConfigurer()
-
-
Method Details
-
configure
public void configure(String name, String address, org.apache.cxf.transport.http.HTTPConduit conduit) - Specified by:
configurein interfaceorg.apache.cxf.transport.http.HTTPConduitConfigurer
-
addConfigurer
public void addConfigurer(String address, Consumer<org.apache.cxf.transport.http.HTTPConduit> configurer) Add aconfigurerthat will be applied only to the conduit associated with the givenaddress.- Parameters:
address- the endpoint address for which the giveconfigurershould be registeredconfigurer- theconfigurerto apply to the conduit associated with the givenaddress.
-