Package com.leansoft.mwsc.model.annotation

Examples of com.leansoft.mwsc.model.annotation.WebMethodAnnotation


       
        return soapBindingAnn;
    }
   
    private WebMethodAnnotation getWebMethodAnnotation(Operation operation, String methodName) {
      WebMethodAnnotation webMethodAnn = new WebMethodAnnotation();
     
      String operationName = operation.getName().getLocalPart();
      if(!methodName.equals(operationName)) {
        webMethodAnn.setOperationName(operationName);
      }
     
        if (operation.getSOAPAction() != null && operation.getSOAPAction().length() > 0){
            webMethodAnn.setAction(operation.getSOAPAction());
        }
       
        return webMethodAnn;
    }
View Full Code Here

TOP

Related Classes of com.leansoft.mwsc.model.annotation.WebMethodAnnotation

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.