1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.legacy;
17
18 import org.kuali.rice.core.api.util.type.KualiDecimal;
19 import org.kuali.rice.krad.data.jpa.converters.KualiDecimalConverter;
20 import org.kuali.rice.krad.data.provider.annotation.Description;
21 import org.kuali.rice.krad.data.provider.annotation.KeyValuesFinderClass;
22 import org.kuali.rice.krad.data.provider.annotation.Label;
23 import org.kuali.rice.krad.data.provider.annotation.UifDisplayHint;
24 import org.kuali.rice.krad.data.provider.annotation.UifDisplayHintType;
25 import org.kuali.rice.krad.data.provider.annotation.UifDisplayHints;
26 import org.kuali.rice.krad.document.TransactionalDocumentBase;
27
28 import javax.persistence.CascadeType;
29 import javax.persistence.Column;
30 import javax.persistence.Convert;
31 import javax.persistence.FetchType;
32 import javax.persistence.OneToMany;
33 import javax.persistence.Temporal;
34 import javax.persistence.TemporalType;
35 import javax.persistence.Transient;
36 import java.util.ArrayList;
37 import java.util.Date;
38 import java.util.List;
39
40
41
42
43 public class LegacyTravelAuthorization extends TransactionalDocumentBase {
44 private static final long serialVersionUID = -6609385831976630737L;
45
46
47
48
49
50 private Date tripBegin;
51
52
53
54
55
56 private Date tripEnd;
57
58
59
60
61 private String tripDescription;
62
63
64
65 private String tripDestinationId;
66
67
68
69
70
71 private String travelerDetailId;
72
73
74
75
76
77
78
79
80
81
82
83 private String travelTypeCode;
84
85
86
87
88
89
90 private KualiDecimal expenseLimit;
91
92
93
94
95
96 private String cellPhoneNumber;
97
98
99
100
101
102
103
104 public Date getTripBegin() {
105 return tripBegin;
106 }
107
108 public void setTripBegin(Date tripBegin) {
109 this.tripBegin = tripBegin;
110 }
111
112 public Date getTripEnd() {
113 return tripEnd;
114 }
115
116 public void setTripEnd(Date tripEnd) {
117 this.tripEnd = tripEnd;
118 }
119
120 public String getTripDescription() {
121 return tripDescription;
122 }
123
124 public void setTripDescription(String tripDescription) {
125 this.tripDescription = tripDescription;
126 }
127
128 public String getTravelerDetailId() {
129 return travelerDetailId;
130 }
131
132 public void setTravelerDetailId(String travelerDetailId) {
133 this.travelerDetailId = travelerDetailId;
134 }
135
136
137
138
139
140
141
142
143
144 public String getCellPhoneNumber() {
145 return cellPhoneNumber;
146 }
147
148 public void setCellPhoneNumber(String cellPhoneNumber) {
149 this.cellPhoneNumber = cellPhoneNumber;
150 }
151
152 public KualiDecimal getExpenseLimit() {
153 return expenseLimit;
154 }
155
156 public void setExpenseLimit(KualiDecimal expenseLimit) {
157 this.expenseLimit = expenseLimit;
158 }
159
160 public String getTripDestinationId() {
161 return tripDestinationId;
162 }
163
164 public void setTripDestinationId(String tripDestinationId) {
165 this.tripDestinationId = tripDestinationId;
166 }
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192 public String getTravelTypeCode() {
193 return travelTypeCode;
194 }
195
196 public void setTravelTypeCode(String travelTypeCode) {
197 this.travelTypeCode = travelTypeCode;
198 }
199 }