View Javadoc

1   /**
2    * Copyright 2005-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.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/ecl2.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 org.kuali.rice.core.api.util.type.KualiPercent;
19  
20  import java.io.Serializable;
21  import java.util.Date;
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      // this is just for testing relationshipDefinitions until a nested object
40      // is no longer required
41      private FiscalOfficerInfo fiscalOfficerInfo;
42  
43       public FiscalOfficerInfo getFiscalOfficerInfo() {
44          return fiscalOfficerInfo;
45      }
46  
47      public void setFiscalOfficerInfo(FiscalOfficerInfo fiscalOfficerInfo) {
48          this.fiscalOfficerInfo = fiscalOfficerInfo;
49      }
50      
51      
52      public String getNumber() {
53          return this.number;
54      }
55      
56      public void setNumber(String number) {
57          this.number = number;
58      }
59      
60      public String getSubAccount() {
61          return this.subAccount;
62      }
63      
64      public void setSubAccount(String subAccount) {
65          this.subAccount = subAccount;
66      }
67      
68      public String getName() {
69          return this.name;
70      }
71      
72      public void setName(String name) {
73          this.name = name;
74      }
75      
76      public String getSubAccountName() {
77          return this.subAccountName;
78      }
79      
80      public void setSubAccountName(String subAccountName) {
81          this.subAccountName = subAccountName;
82      }
83      
84      public KualiPercent getSubsidizedPercent() {
85          return this.subsidizedPercent;
86      }
87      
88      public void setSubsidizedPercent(KualiPercent subsidizedPercent) {
89          this.subsidizedPercent = subsidizedPercent;
90      }
91      
92      public Date getCreateDate() {
93          return this.createDate;
94      }
95      
96      public void setCreateDate(Date createDate) {
97          this.createDate = createDate;
98      }
99      
100     public Long getFoId() {
101         return this.foId;
102     }
103     
104     public void setFoId(Long foId) {
105         this.foId = foId;
106     }
107 
108     public String getObjectId() {
109         return this.objectId;
110     }
111 
112     public void setObjectId(String objectId) {
113         this.objectId = objectId;
114     }
115 
116     public Long getVersionNumber() {
117         return this.versionNumber;
118     }
119 
120     public void setVersionNumber(Long versionNumber) {
121         this.versionNumber = versionNumber;
122     }
123     
124 }