1 16 17 package test.wsdl.inheritance; 18 19 26 public class InheritanceTestSoapBindingImpl implements test.wsdl.inheritance.InheritancePortType { 27 28 34 public float getLastTradePrice(java.lang.String tickerSymbol) throws java.rmi.RemoteException { 35 36 if (tickerSymbol.equals("SOAP")) { 37 return 20.25F; 38 } else { 39 return 0.00F; 40 } 41 42 } 44 50 public float getRealtimeLastTradePrice(java.lang.String tickerSymbol) throws java.rmi.RemoteException { 51 52 if (tickerSymbol.equals("AXIS")) { 53 return 21.75F; 54 } else { 55 return 0.00F; 56 } 57 58 } 60 } | Popular Tags |