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

Examples of org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping


   * Returns a {@link SoapActionAnnotationMethodEndpointMapping} ordered at 1 for
   * mapping requests to annotated endpoints.
   */
  @Bean
  public SoapActionAnnotationMethodEndpointMapping soapActionAnnotationMethodEndpointMapping() {
    SoapActionAnnotationMethodEndpointMapping endpointMapping =
        new SoapActionAnnotationMethodEndpointMapping();
    endpointMapping.setOrder(1);
    endpointMapping.setInterceptors(getInterceptors());
    return endpointMapping;
  }
View Full Code Here


    assertEquals(0, endpointMapping.getOrder());
  }

  @Test
  public void soapActionAnnotationMethodEndpointMapping() throws Exception {
    SoapActionAnnotationMethodEndpointMapping endpointMapping = this.applicationContext.getBean(
        SoapActionAnnotationMethodEndpointMapping.class);
    assertEquals(1, endpointMapping.getOrder());
  }
View Full Code Here

TOP

Related Classes of org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping

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.