Class WSDLValidatorElement
- java.lang.Object
-
- org.apache.axis2.jaxws.common.config.WSDLValidatorElement
-
public class WSDLValidatorElement extends Object
WSDLValidator Element is used to store the state of the WSDL:Binding required=true Elements. State can be SUPPORTED, NOT_SUPPORTED, NOT_RECOGNIZED. NOT_RECOGNIZED - This means JAX-WS runtime does not recoginze this element, this is default behavior. SUPPORTED - This required element is recognized and understood by JAX-WS runtime. NOT_SUPPORTED - This required element is NOT understood by JAX-WS runtime. This means that runtime recognize the element, but due to the current config we can't honor it ERROR - There where errors while processing the extension, this state will populate the error message field.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
WSDLValidatorElement.State
-
Constructor Summary
Constructors Constructor Description WSDLValidatorElement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getErrorMessage()
javax.wsdl.extensions.ExtensibilityElement
getExtensionElement()
WSDLValidatorElement.State
getState()
void
setErrorMessage(String errorMessage)
void
setExtensionElement(javax.wsdl.extensions.ExtensibilityElement extensionElement)
void
setState(WSDLValidatorElement.State state)
-
-
-
Method Detail
-
getExtensionElement
public javax.wsdl.extensions.ExtensibilityElement getExtensionElement()
-
setExtensionElement
public void setExtensionElement(javax.wsdl.extensions.ExtensibilityElement extensionElement)
-
getErrorMessage
public String getErrorMessage()
-
setErrorMessage
public void setErrorMessage(String errorMessage)
-
getState
public WSDLValidatorElement.State getState()
-
setState
public void setState(WSDLValidatorElement.State state)
-
-