| java.lang.Object org.springframework.ws.server.endpoint.AbstractEndpointExceptionResolver org.springframework.ws.soap.server.endpoint.AbstractSoapFaultDefinitionExceptionResolver
All known Subclasses: org.springframework.ws.soap.server.endpoint.SoapFaultMappingExceptionResolver, org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver,
customizeFault | protected void customizeFault(Object endpoint, Exception ex, SoapFault fault)(Code) | | Customize the
SoapFault created by this resolver. Called for each created fault
The default implementation is empty. Can be overridden in subclasses to customize the properties of the fault,
such as adding details, etc.
Parameters: endpoint - the executed endpoint, or null if none chosen at the time of the exception Parameters: ex - the exception to be handled Parameters: fault - the created fault |
getFaultDefinition | abstract protected SoapFaultDefinition getFaultDefinition(Object endpoint, Exception ex)(Code) | | Template method that returns the
SoapFaultDefinition for the given exception.
Parameters: endpoint - the executed endpoint, or null if none chosen at the time of the exception Parameters: ex - the exception to be handled the definition mapped to the exception, or null if none is found. |
setDefaultFault | public void setDefaultFault(SoapFaultDefinition defaultFault)(Code) | | Set the default fault. This fault will be returned if no specific mapping was found.
|
Fields inherited from org.springframework.ws.server.endpoint.AbstractEndpointExceptionResolver | final protected Log logger(Code)(Java Doc)
|
|
|