View Javadoc

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