All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.example.stock.async.StockExceptionTest Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version

package com.example.stock.async;

import java.util.List;
import java.util.concurrent.Future;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.AsyncHandler;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.Response;
import javax.xml.ws.ResponseWrapper;


/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 2.2.6b10 
 * Generated source version: 2.1
 * 
 */
@WebService(name = "StockExceptionTest", targetNamespace = "http://www.example.com/stock")
@XmlSeeAlso({
    ObjectFactory.class
})
public interface StockExceptionTest {


    /**
     * 
     * @param input
     * @return
     *     returns javax.xml.ws.Response
     */
    @WebMethod(operationName = "stockQuoteOffer")
    @RequestWrapper(localName = "stockQuoteOffer", targetNamespace = "http://www.example.com/stock", className = "com.example.stock.async.StockQuoteOffer")
    @ResponseWrapper(localName = "stockQuoteOfferResponse", targetNamespace = "http://www.example.com/stock", className = "com.example.stock.async.StockQuoteOfferResponseType")
    public Response stockQuoteOfferAsync(
        @WebParam(name = "input", targetNamespace = "")
        List input);

    /**
     * 
     * @param input
     * @param asyncHandler
     * @return
     *     returns java.util.concurrent.Future
     */
    @WebMethod(operationName = "stockQuoteOffer")
    @RequestWrapper(localName = "stockQuoteOffer", targetNamespace = "http://www.example.com/stock", className = "com.example.stock.async.StockQuoteOffer")
    @ResponseWrapper(localName = "stockQuoteOfferResponse", targetNamespace = "http://www.example.com/stock", className = "com.example.stock.async.StockQuoteOfferResponseType")
    public Future stockQuoteOfferAsync(
        @WebParam(name = "input", targetNamespace = "")
        List input,
        @WebParam(name = "asyncHandler", targetNamespace = "")
        AsyncHandler asyncHandler);

    /**
     * 
     * @param input
     * @return
     *     returns com.example.stock.async.StockOffer
     * @throws InvalidSymbolFault_Exception
     * @throws MarketClosedFault
     * @throws TestNotDeclaredAtSourceFault
     */
    @WebMethod
    @WebResult(name = "stockQuoteOfferReturn", targetNamespace = "")
    @RequestWrapper(localName = "stockQuoteOffer", targetNamespace = "http://www.example.com/stock", className = "com.example.stock.async.StockQuoteOffer")
    @ResponseWrapper(localName = "stockQuoteOfferResponse", targetNamespace = "http://www.example.com/stock", className = "com.example.stock.async.StockQuoteOfferResponseType")
    public StockOffer stockQuoteOffer(
        @WebParam(name = "input", targetNamespace = "")
        List input)
        throws InvalidSymbolFault_Exception, MarketClosedFault, TestNotDeclaredAtSourceFault
    ;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy