Package org.springframework.ws.soap.addressing.server

Examples of org.springframework.ws.soap.addressing.server.AnnotationActionEndpointMapping


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


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

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

TOP

Related Classes of org.springframework.ws.soap.addressing.server.AnnotationActionEndpointMapping

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.