Coverage Report - net.webservicex.StockQuoteHttpGet
 
Classes in this File Line Coverage Branch Coverage Complexity
StockQuoteHttpGet
N/A
N/A
0
 
 1  
 /*
 2  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 3  
  * The software in this package is published under the terms of the CPAL v1.0
 4  
  * license, a copy of which has been included with this distribution in the
 5  
  * LICENSE.txt file.
 6  
  */
 7  
 package net.webservicex;
 8  
 
 9  
 import javax.jws.WebMethod;
 10  
 import javax.jws.WebParam;
 11  
 import javax.jws.WebResult;
 12  
 import javax.jws.WebService;
 13  
 import javax.jws.soap.SOAPBinding;
 14  
 import javax.xml.bind.annotation.XmlSeeAlso;
 15  
 
 16  
 /**
 17  
  * This class was generated by Apache CXF 2.2.8
 18  
  * Tue May 11 18:53:01 ART 2010
 19  
  * Generated source version: 2.2.8
 20  
  * 
 21  
  */
 22  
  
 23  
 @WebService(targetNamespace = "http://www.webserviceX.NET/", name = "StockQuoteHttpGet")
 24  
 @XmlSeeAlso({ObjectFactory.class})
 25  
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 26  
 public interface StockQuoteHttpGet {
 27  
 
 28  
     @WebResult(name = "string", targetNamespace = "http://www.webserviceX.NET/", partName = "Body")
 29  
     @WebMethod(operationName = "GetQuote")
 30  
     public java.lang.String getQuote(
 31  
         @WebParam(partName = "symbol", name = "symbol", targetNamespace = "")
 32  
         java.lang.String symbol
 33  
     );
 34  
 }