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

Examples of org.springframework.ws.soap.server.endpoint.annotation.SoapActions


  @Override
  protected List<String> getLookupKeysForMethod(Method method) {
    List<String> result = new ArrayList<String>();

    SoapActions soapActions = AnnotationUtils.findAnnotation(method,
        SoapActions.class);
    if (soapActions != null) {
      for (SoapAction soapAction : soapActions.value()) {
        result.add(soapAction.value());
      }
    }
    else {
      SoapAction soapAction = AnnotationUtils.findAnnotation(method, SoapAction.class);
View Full Code Here

TOP

Related Classes of org.springframework.ws.soap.server.endpoint.annotation.SoapActions

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.