Interface WSDLExtensionValidator
-
- All Known Implementing Classes:
AddressingWSDLExtensionValidator
public interface WSDLExtensionValidator
An implementation of theWSDLExtensionValidator
will perform validation on required=true wsdl extensibility elements. The RespectBindingConfigurator will collect all the required=true extensions from wsdl these set of extensions will then have to be validated by WSDLExtensionValidator to check if jax-ws runtime can process these required extension. The job of WSDLExtensionValidator is to perform these validation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
validate(Set<WSDLValidatorElement> extensionSet, javax.wsdl.Definition wsdlDefinition, EndpointDescription endpointDesc)
Performs validation of input extensionSets from RespectBindingConfigurator.
-
-
-
Method Detail
-
validate
void validate(Set<WSDLValidatorElement> extensionSet, javax.wsdl.Definition wsdlDefinition, EndpointDescription endpointDesc)
Performs validation of input extensionSets from RespectBindingConfigurator.- Parameters:
extensionSet
- - Set of found required=true extensions from wsdl, read WSDLValidatorElement object definition.wsdlDefinition
- - a wsdl definition instance.endpointDesc
- - EndpointDescription that describes JAX-WS Endpoint definition.
-
-