FileDocCategorySizeDatePackage
InheritanceTestSoapBindingImpl.javaAPI DocApache Axis 1.41970Sat Apr 22 18:57:28 BST 2006test.wsdl.inheritance

InheritanceTestSoapBindingImpl

public class InheritanceTestSoapBindingImpl extends Object implements test.wsdl.inheritance.InheritancePortType
This class contains the remote method implementations for the inheritance test.
version
1.00 21 Jan 2002
author
Brent Ulbricht

Fields Summary
Constructors Summary
Methods Summary
public floatgetLastTradePrice(java.lang.String tickerSymbol)
This method will return a hard coded value to the client depending on the value of the tickerSymbol received. The getLastTradePrice originates from the InheritancePortType interface.


        if (tickerSymbol.equals("SOAP")) {
            return 20.25F;
        } else {
            return 0.00F;
        }

    
public floatgetRealtimeLastTradePrice(java.lang.String tickerSymbol)
This method will return a hard coded value to the client depending on the value of the tickerSymbol received. The getRealtimeLastTradePrice originates from the StockQuoteProvider interface.

        
        if (tickerSymbol.equals("AXIS")) {
            return 21.75F;
        } else {
            return 0.00F;
        }