Package org.springframework.ws.soap.server.endpoint

Examples of org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver


   * Returns a {@link SoapFaultAnnotationExceptionResolver} ordered at 0 for handling
   * endpoint exceptions.
   */
  @Bean
  public SoapFaultAnnotationExceptionResolver soapFaultAnnotationExceptionResolver() {
    SoapFaultAnnotationExceptionResolver exceptionResolver = new SoapFaultAnnotationExceptionResolver();
    exceptionResolver.setOrder(0);

    return exceptionResolver;
  }
View Full Code Here

TOP

Related Classes of org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.