View Javadoc

1   /*
2    * Copyright 2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 1.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl1.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.sampleu.travel.dto;
17  
18  import java.io.Serializable;
19  import java.util.Date;
20  
21  import org.kuali.rice.core.util.type.KualiPercent;
22  
23  /**
24   * 
25   * @author Kuali Rice Team (rice.collab@kuali.org)
26   */
27  public class TravelAccountInfo implements Serializable {
28      
29      private String number;
30      private String subAccount;
31      private String name;
32      private String subAccountName;
33      private KualiPercent subsidizedPercent;
34      private Date createDate;
35      private Long foId;
36      private String objectId;
37      private Long versionNumber;
38      
39      
40      public String getNumber() {
41          return this.number;
42      }
43      
44      public void setNumber(String number) {
45          this.number = number;
46      }
47      
48      public String getSubAccount() {
49          return this.subAccount;
50      }
51      
52      public void setSubAccount(String subAccount) {
53          this.subAccount = subAccount;
54      }
55      
56      public String getName() {
57          return this.name;
58      }
59      
60      public void setName(String name) {
61          this.name = name;
62      }
63      
64      public String getSubAccountName() {
65          return this.subAccountName;
66      }
67      
68      public void setSubAccountName(String subAccountName) {
69          this.subAccountName = subAccountName;
70      }
71      
72      public KualiPercent getSubsidizedPercent() {
73          return this.subsidizedPercent;
74      }
75      
76      public void setSubsidizedPercent(KualiPercent subsidizedPercent) {
77          this.subsidizedPercent = subsidizedPercent;
78      }
79      
80      public Date getCreateDate() {
81          return this.createDate;
82      }
83      
84      public void setCreateDate(Date createDate) {
85          this.createDate = createDate;
86      }
87      
88      public Long getFoId() {
89          return this.foId;
90      }
91      
92      public void setFoId(Long foId) {
93          this.foId = foId;
94      }
95  
96      public String getObjectId() {
97          return this.objectId;
98      }
99  
100     public void setObjectId(String objectId) {
101         this.objectId = objectId;
102     }
103 
104     public Long getVersionNumber() {
105         return this.versionNumber;
106     }
107 
108     public void setVersionNumber(Long versionNumber) {
109         this.versionNumber = versionNumber;
110     }
111     
112 }