Produced by Araxis Merge on 2/7/2017 12:14:07 PM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
# | Location | File | Last Modified |
---|---|---|---|
1 | cpss.zip\cpss\src\main\java\gov\va\cpss\model\cbs | CBSSiteStmt.java | Wed Feb 1 21:07:28 2017 UTC |
2 | cpss.zip\cpss\src\main\java\gov\va\cpss\model\cbs | CBSSiteStmt.java | Fri Feb 3 20:59:03 2017 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 2 | 516 |
Changed | 1 | 2 |
Inserted | 0 | 0 |
Removed | 0 | 0 |
Whitespace | |
---|---|
Character case | Differences in character case are significant |
Line endings | Differences in line endings (CR and LF characters) are ignored |
CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
1 | package go v.va.cpss. model.cbs; | |
2 | ||
3 | import jav a.io.Seria lizable; | |
4 | import jav a.util.Dat e; | |
5 | import jav a.util.Lis t; | |
6 | ||
7 | import gov .va.cpss.c obol.Money ; | |
8 | import gov .va.cpss.m odel.Boole anChar; | |
9 | import gov .va.cpss.m odel.CBSSA uditDates; | |
10 | ||
11 | /** | |
12 | * Bean cl ass for th e CBSSiteS tmt databa se table. | |
13 | * | |
14 | * @author D N S | |
15 | */ | |
16 | public cla ss CBSSite Stmt imple ments CBSS AuditDates , Serializ able { | |
17 | ||
18 | pr ivate stat ic final l ong serial VersionUID = 1L; | |
19 | ||
20 | pr ivate long id; | |
21 | pr ivate long stmtId; | |
22 | pr ivate Stri ng station Num; | |
23 | pr ivate Stri ng station PhoneNum; | |
24 | pr ivate Date processDa te; | |
25 | pr ivate Date statement Date; | |
26 | pr ivate Mone y amountDu e; | |
27 | pr ivate Mone y prevBala nce; | |
28 | pr ivate Mone y totalCha rges; | |
29 | pr ivate Mone y totalCre dits; | |
30 | pr ivate Mone y newBalan ce; | |
31 | pr ivate Stri ng special Notes; | |
32 | pr ivate Stri ng noParaC des; | |
33 | pr ivate Bool eanChar la rgeFontInd = Boolean Char.N; | |
34 | pr ivate Bool eanChar ar AddressFla g = Boolea nChar.N; | |
35 | pr ivate Date lastBillP repDate; | |
36 | pr ivate Bool eanChar is Primary = BooleanCha r.N; | |
37 | pr ivate Bool eanChar is PrimaryAdd ress = Boo leanChar.N ; | |
38 | pr ivate Stri ng created By; | |
39 | pr ivate Date createdDa te; | |
40 | pr ivate Stri ng modifie dBy; | |
41 | pr ivate Date modifiedD ate; | |
42 | ||
43 | pr ivate CBSS itePatient sitePatie nt; | |
44 | ||
45 | pr ivate List <CBSSiteTr ans> siteT ransL; | |
46 | ||
47 | pu blic long getId() { | |
48 | retu rn id; | |
49 | } | |
50 | ||
51 | pu blic void setId(long id) { | |
52 | this .id = id; | |
53 | } | |
54 | ||
55 | pu blic long getStmtId( ) { | |
56 | retu rn stmtId; | |
57 | } | |
58 | ||
59 | pu blic void setStmtId( long stmtI d) { | |
60 | this .stmtId = stmtId; | |
61 | } | |
62 | ||
63 | pu blic Strin g getStati onNum() { | |
64 | retu rn station Num; | |
65 | } | |
66 | ||
67 | pu blic void setStation Num(String stationNu m) { | |
68 | this .stationNu m = statio nNum; | |
69 | } | |
70 | ||
71 | pu blic Strin g getStati onPhoneNum () { | |
72 | retu rn station PhoneNum; | |
73 | } | |
74 | ||
75 | pu blic void setStation PhoneNum(S tring stat ionPhoneNu m) { | |
76 | this .stationPh oneNum = s tationPhon eNum; | |
77 | } | |
78 | ||
79 | pu blic Date getProcess Date() { | |
80 | retu rn process Date; | |
81 | } | |
82 | ||
83 | pu blic void setProcess Date(Date processDat e) { | |
84 | this .processDa te = proce ssDate; | |
85 | } | |
86 | ||
87 | pu blic Date getStateme ntDate() { | |
88 | retu rn stateme ntDate; | |
89 | } | |
90 | ||
91 | pu blic void setStateme ntDate(Dat e statemen tDate) { | |
92 | this .statement Date = sta tementDate ; | |
93 | } | |
94 | ||
95 | pu blic Money getAmount Due() { | |
96 | retu rn amountD ue; | |
97 | } | |
98 | ||
99 | pu blic void setAmountD ue(Money a mountDue) { | |
100 | this .amountDue = amountD ue; | |
101 | } | |
102 | ||
103 | pu blic Money getPrevBa lance() { | |
104 | retu rn prevBal ance; | |
105 | } | |
106 | ||
107 | pu blic void setPrevBal ance(Money prevBalan ce) { | |
108 | this .prevBalan ce = prevB alance; | |
109 | } | |
110 | ||
111 | pu blic Money getTotalC harges() { | |
112 | retu rn totalCh arges; | |
113 | } | |
114 | ||
115 | pu blic void setTotalCh arges(Mone y totalCha rges) { | |
116 | this .totalChar ges = tota lCharges; | |
117 | } | |
118 | ||
119 | pu blic Money getTotalC redits() { | |
120 | retu rn totalCr edits; | |
121 | } | |
122 | ||
123 | pu blic void setTotalCr edits(Mone y totalCre dits) { | |
124 | this .totalCred its = tota lCredits; | |
125 | } | |
126 | ||
127 | pu blic Money getNewBal ance() { | |
128 | retu rn newBala nce; | |
129 | } | |
130 | ||
131 | pu blic void setNewBala nce(Money newBalance ) { | |
132 | this .newBalanc e = newBal ance; | |
133 | } | |
134 | ||
135 | pu blic Strin g getSpeci alNotes() { | |
136 | retu rn special Notes; | |
137 | } | |
138 | ||
139 | pu blic void setSpecial Notes(Stri ng special Notes) { | |
140 | this .specialNo tes = spec ialNotes; | |
141 | } | |
142 | ||
143 | pu blic Strin g getNoPar aCdes() { | |
144 | retu rn noParaC des; | |
145 | } | |
146 | ||
147 | pu blic void setNoParaC des(String noParaCde s) { | |
148 | this .noParaCde s = noPara Cdes; | |
149 | } | |
150 | ||
151 | pu blic Boole anChar get LargeFontI nd() { | |
152 | retu rn largeFo ntInd; | |
153 | } | |
154 | ||
155 | pu blic void setLargeFo ntInd(Bool eanChar la rgeFontInd ) { | |
156 | this .largeFont Ind = larg eFontInd; | |
157 | } | |
158 | ||
159 | pu blic Boole anChar get ArAddressF lag() { | |
160 | retu rn arAddre ssFlag; | |
161 | } | |
162 | ||
163 | pu blic void setArAddre ssFlag(Boo leanChar a rAddressFl ag) { | |
164 | this .arAddress Flag = arA ddressFlag ; | |
165 | } | |
166 | ||
167 | pu blic Date getLastBil lPrepDate( ) { | |
168 | retu rn lastBil lPrepDate; | |
169 | } | |
170 | ||
171 | pu blic void setLastBil lPrepDate( Date lastB illPrepDat e) { | |
172 | this .lastBillP repDate = lastBillPr epDate; | |
173 | } | |
174 | ||
175 | pu blic Boole anChar get IsPrimary( ) { | |
176 | retu rn isPrima ry; | |
177 | } | |
178 | ||
179 | pu blic void setIsPrima ry(Boolean Char isPri mary) { | |
180 | this .isPrimary = isPrima ry; | |
181 | } | |
182 | ||
183 | pu blic Boole anChar get IsPrimaryA ddress() { | |
184 | retu rn isPrima ryAddress; | |
185 | } | |
186 | ||
187 | pu blic void setIsPrima ryAddress( BooleanCha r isPrimar yAddress) { | |
188 | this .isPrimary Address = isPrimaryA ddress; | |
189 | } | |
190 | ||
191 | @O verride | |
192 | pu blic Strin g getCreat edBy() { | |
193 | retu rn created By; | |
194 | } | |
195 | ||
196 | @O verride | |
197 | pu blic void setCreated By(String createdBy) { | |
198 | this .createdBy = created By; | |
199 | } | |
200 | ||
201 | @O verride | |
202 | pu blic Date getCreated Date() { | |
203 | retu rn created Date; | |
204 | } | |
205 | ||
206 | @O verride | |
207 | pu blic void setCreated Date(Date createdDat e) { | |
208 | this .createdDa te = creat edDate; | |
209 | } | |
210 | ||
211 | @O verride | |
212 | pu blic Strin g getModif iedBy() { | |
213 | retu rn modifie dBy; | |
214 | } | |
215 | ||
216 | @O verride | |
217 | pu blic void setModifie dBy(String modifiedB y) { | |
218 | this .modifiedB y = modifi edBy; | |
219 | } | |
220 | ||
221 | @O verride | |
222 | pu blic Date getModifie dDate() { | |
223 | retu rn modifie dDate; | |
224 | } | |
225 | ||
226 | @O verride | |
227 | pu blic void setModifie dDate(Date modifiedD ate) { | |
228 | this .modifiedD ate = modi fiedDate; | |
229 | } | |
230 | ||
231 | pu blic CBSSi tePatient getSitePat ient() { | |
232 | retu rn sitePat ient; | |
233 | } | |
234 | ||
235 | pu blic void setSitePat ient(CBSSi tePatient sitePatien t) { | |
236 | this .sitePatie nt = siteP atient; | |
237 | } | |
238 | ||
239 | pu blic List< CBSSiteTra ns> getSit eTransL() { | |
240 | retu rn siteTra nsL; | |
241 | } | |
242 | ||
243 | pu blic void setSiteTra nsL(List<C BSSiteTran s> siteTra nsL) { | |
244 | this .siteTrans L = siteTr ansL; | |
245 | } | |
246 | ||
247 | @O verride | |
248 | pu blic Strin g toString () { | |
249 | retu rn "CBSSit eStmt [id= " + id + " , stmtId=" + stmtId + ", stati onNum=" + stationNum + ", stat ionPhoneNu m=" | |
250 | + statio nPhoneNum + ", proce ssDate=" + processDa te + ", st atementDat e=" + stat ementDate + ", amoun tDue=" | |
251 | + amount Due + ", p revBalance =" + prevB alance + " , totalCha rges=" + t otalCharge s + ", tot alCredits= " | |
252 | + totalC redits + " , newBalan ce=" + new Balance + ", special Notes=" + specialNot es + ", no ParaCdes=" | |
253 | + noPara Cdes + ", largeFontI nd=" + lar geFontInd + ", arAdd ressFlag=" + arAddre ssFlag | |
254 | + ", las tBillPrepD ate=" + la stBillPrep Date + ", isPrimary= " + isPrim ary + ", i sPrimaryAd dress=" | |
255 | + isPrim aryAddress + ", crea tedBy=" + createdBy + ", creat edDate=" + createdDa te + ", mo difiedBy=" | |
256 | + modifi edBy + ", modifiedDa te=" + mod ifiedDate + "]"; | |
257 | } | |
258 | ||
259 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.