blob: db21e9c32483f17f445a113817b730f5db498e97 [file] [log] [blame]
package org.apache.axis2.jaxws.jaxb.stockquote;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by the JAXWS SI.
* JAX-WS RI 2.0_01-b15-fcs
* Generated source version: 2.0
*
*/
@WebService(name = "StockQuoteIF", targetNamespace = "http://org/apache/axis2/jaxws/test")
public interface StockQuoteIF {
/**
*
* @param symbol
* @return
* returns java.lang.String
*/
@WebMethod(action = "http://tempuri.org/StockQuote/getPrice")
@WebResult(name = "price", targetNamespace = "")
@RequestWrapper(localName = "getPrice", targetNamespace = "urn://stock2.test.org", className = "org.test.stock2.GetPrice")
@ResponseWrapper(localName = "getPriceResponse", targetNamespace = "urn://stock2.test.org", className = "org.test.stock2.StockPrice")
public String getPrice(
@WebParam(name = "symbol", targetNamespace = "")
String symbol);
}