Class AddressingConfigurator
- java.lang.Object
-
- org.apache.axis2.jaxws.client.config.AddressingConfigurator
-
- All Implemented Interfaces:
ClientConfigurator
public class AddressingConfigurator extends Object implements ClientConfigurator
This class will enable/disable WS-Addressing in a JAX-WS 2.1 client, based on the configuration passed to it via anAddressingFeature
and/or aSubmissionAddressingFeature
.- See Also:
AddressingFeature
,SubmissionAddressingFeature
-
-
Constructor Summary
Constructors Constructor Description AddressingConfigurator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(MessageContext messageContext, BindingProvider provider)
Perform client-side configuration for aWebServiceFeature
.boolean
supports(Binding binding)
Indicates whether the configurator supports the specified binding.
-
-
-
Method Detail
-
configure
public void configure(MessageContext messageContext, BindingProvider provider)
Description copied from interface:ClientConfigurator
Perform client-side configuration for aWebServiceFeature
.- Specified by:
configure
in interfaceClientConfigurator
-
supports
public boolean supports(Binding binding)
Description copied from interface:ClientConfigurator
Indicates whether the configurator supports the specified binding.- Specified by:
supports
in interfaceClientConfigurator
- Parameters:
binding
- the binding to test- Returns:
true
if the configurator supports the binding,false
otherwise.
-
-