1   /*
2    * $Id: Trade.java 8077 2007-08-27 20:15:25Z aperepel $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.test.usecases.axis;
12  
13  /**
14   * TODO document
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      // public float getPrice() {
62      // return price;
63      // }
64  
65      // public void setPrice(float price) {
66      // this.price = price;
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  }