1
2
3
4
5
6
7
8
9
10
11 package org.mule.test.usecases.axis;
12
13
14
15
16 public class Trade implements java.io.Serializable
17 {
18 private static final long serialVersionUID = -1225935545079750532L;
19
20 private int accountID;
21 private java.lang.String cusip;
22 private int currency;
23 private int tradeID;
24 private int transaction;
25
26 public Trade()
27 {
28 super();
29 }
30
31 public int getAccountID()
32 {
33 return accountID;
34 }
35
36 public void setAccountID(int accountID)
37 {
38 this.accountID = accountID;
39 }
40
41 public java.lang.String getCusip()
42 {
43 return cusip;
44 }
45
46 public void setCusip(java.lang.String cusip)
47 {
48 this.cusip = cusip;
49 }
50
51 public int getCurrency()
52 {
53 return currency;
54 }
55
56 public void setCurrency(int currency)
57 {
58 this.currency = currency;
59 }
60
61
62
63
64
65
66
67
68
69 public int getTradeID()
70 {
71 return tradeID;
72 }
73
74 public void setTradeID(int tradeID)
75 {
76 this.tradeID = tradeID;
77 }
78
79 public int getTransaction()
80 {
81 return transaction;
82 }
83
84 public void setTransaction(int transaction)
85 {
86 this.transaction = transaction;
87 }
88
89 }