Class RespectBindingConfigurator
- java.lang.Object
-
- org.apache.axis2.jaxws.server.config.RespectBindingConfigurator
-
- All Implemented Interfaces:
ServerConfigurator
public class RespectBindingConfigurator extends Object implements ServerConfigurator
An implementation of theServerConfigurator
interface that will configure the endpoint based on the presence of aRespectBinding
attribute.
-
-
Constructor Summary
Constructors Constructor Description RespectBindingConfigurator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(EndpointDescription endpointDescription)
Perform server-side configuration for aWebServiceFeature
.boolean
supports(String bindingId)
Indicates whether the configurator supports the specified binding.
-
-
-
Method Detail
-
configure
public void configure(EndpointDescription endpointDescription)
Description copied from interface:ServerConfigurator
Perform server-side configuration for aWebServiceFeature
.- Specified by:
configure
in interfaceServerConfigurator
-
supports
public boolean supports(String bindingId)
Description copied from interface:ServerConfigurator
Indicates whether the configurator supports the specified binding.- Specified by:
supports
in interfaceServerConfigurator
- Parameters:
bindingId
- the binding id to test- Returns:
true
if the configurator supports the binding id,false
otherwise.
-
-