1 16 17 package test.wsdl.roundtrip; 18 19 20 21 26 public interface RoundtripPortTypeA { 27 public java.lang.String methodString(java.lang.String inString) 28 throws java.rmi.RemoteException ; 29 public java.math.BigInteger methodBigInteger(java.math.BigInteger inInteger) 30 throws java.rmi.RemoteException ; 31 public java.math.BigDecimal methodBigDecimal(java.math.BigDecimal inDecimal) 32 throws java.rmi.RemoteException ; 33 public java.util.Calendar methodDateTime(java.util.Calendar inDateTime) 34 throws java.rmi.RemoteException ; 35 public java.util.Date methodDate(java.util.Date inDateTime) 36 throws java.rmi.RemoteException ; 37 public byte[] methodByteArray(byte[] inByteArray) 38 throws java.rmi.RemoteException ; 39 public void methodAllTypesIn(java.lang.String string, 40 java.math.BigInteger integer, 41 java.math.BigDecimal decimal, 42 java.util.Calendar dateTime, 43 java.util.Date date, 44 boolean _boolean, 45 byte _byte, 46 short _short, 47 int _int, 48 long _long, 49 float _float, 50 double _double, 51 byte[] base64Binary, 52 java.lang.Boolean soapBoolean, 53 java.lang.Byte soapByte, 54 java.lang.Short soapShort, 55 java.lang.Integer soapInt, 56 java.lang.Long soapLong, 57 java.lang.Float soapFloat, 58 java.lang.Double soapDouble, 59 java.lang.Byte [] soapBase64) 60 throws java.rmi.RemoteException ; 61 public int[] methodIntArrayInOut(int[] inIntArray) 62 throws java.rmi.RemoteException ; 63 public void methodIntArrayIn(int[] inIntArray) 64 throws java.rmi.RemoteException ; 65 public int[] methodIntArrayOut() 66 throws java.rmi.RemoteException ; 67 public String [][] methodStringMArrayInOut(String [][] inStringArray) 68 throws java.rmi.RemoteException ; 69 public void methodStringMArrayIn(String [][] inStringArray) 70 throws java.rmi.RemoteException ; 71 public String [][] methodStringMArrayOut() 72 throws java.rmi.RemoteException ; 73 public void methodBondInvestmentIn(BondInvestment bondInvestment) 74 throws java.rmi.RemoteException ; 75 public BondInvestment methodBondInvestmentOut() 76 throws java.rmi.RemoteException ; 77 public BondInvestment methodBondInvestmentInOut(BondInvestment bondInvestment) 78 throws java.rmi.RemoteException ; 79 public float getRealtimeLastTradePrice(StockInvestment stockInvestment) 80 throws java.rmi.RemoteException ; 81 public PreferredStockInvestment getDividends(PreferredStockInvestment preferredStock) 82 throws java.rmi.RemoteException ; 83 public CallOptions[] methodCallOptions(CallOptions[] callOptions) 84 throws java.rmi.RemoteException ; 85 } 87 | Popular Tags |