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

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


        }
    }

    @Override
    protected String getLookupKeyForMethod(Method method) {
        SoapAction soapAction = AnnotationUtils.findAnnotation(method, SoapAction.class);
        return soapAction != null ? soapAction.value() : null;
    }
View Full Code Here


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

TOP

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

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.