View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.test.usecases.axis;
8   
9   /**
10   * TODO document
11   */
12  public class Trade implements java.io.Serializable
13  {
14      private static final long serialVersionUID = -1225935545079750532L;
15  
16      private int accountID;
17      private java.lang.String cusip;
18      private int currency;
19      private int tradeID;
20      private int transaction;
21  
22      public Trade()
23      {
24          super();
25      }
26  
27      public int getAccountID()
28      {
29          return accountID;
30      }
31  
32      public void setAccountID(int accountID)
33      {
34          this.accountID = accountID;
35      }
36  
37      public java.lang.String getCusip()
38      {
39          return cusip;
40      }
41  
42      public void setCusip(java.lang.String cusip)
43      {
44          this.cusip = cusip;
45      }
46  
47      public int getCurrency()
48      {
49          return currency;
50      }
51  
52      public void setCurrency(int currency)
53      {
54          this.currency = currency;
55      }
56  
57      // public float getPrice() {
58      // return price;
59      // }
60  
61      // public void setPrice(float price) {
62      // this.price = price;
63      // }
64  
65      public int getTradeID()
66      {
67          return tradeID;
68      }
69  
70      public void setTradeID(int tradeID)
71      {
72          this.tradeID = tradeID;
73      }
74  
75      public int getTransaction()
76      {
77          return transaction;
78      }
79  
80      public void setTransaction(int transaction)
81      {
82          this.transaction = transaction;
83      }
84  
85  }