Produced by Araxis Merge on 11/14/2017 6:57:20 AM Central 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 | cbs.zip\cbs\cbs\src\main\java\gov\va\cpss\model\cbs | CBSSitePatient.java | Thu Nov 9 14:19:50 2017 UTC |
| 2 | cbs.zip\cbs\cbs\src\main\java\gov\va\cpss\model\cbs | CBSSitePatient.java | Tue Nov 14 12:26:50 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 426 |
| 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 | ||
| 6 | import gov .va.cpss.m odel.CBSSA uditDates; | |
| 7 | ||
| 8 | /** | |
| 9 | * Bean cl ass for th e CBSSiteP atient dat abase tabl e. | |
| 10 | * | |
| 11 | * @author DN S BROWNL | |
| 12 | */ | |
| 13 | public cla ss CBSSite Patient im plements C BSSAuditDa tes, Seria lizable { | |
| 14 | ||
| 15 | pr ivate stat ic final l ong serial VersionUID = 1L; | |
| 16 | ||
| 17 | pr ivate long id; | |
| 18 | pr ivate long siteStmtI d; | |
| 19 | pr ivate Stri ng icn; | |
| 20 | pr ivate long dfn; | |
| 21 | pr ivate Stri ng oldAcnt Num; | |
| 22 | pr ivate Stri ng firstNa me; | |
| 23 | pr ivate Stri ng lastNam e; | |
| 24 | pr ivate Stri ng middleN ame; | |
| 25 | pr ivate Stri ng address 1; | |
| 26 | pr ivate Stri ng address 2; | |
| 27 | pr ivate Stri ng address 3; | |
| 28 | pr ivate Stri ng city; | |
| 29 | pr ivate Stri ng state; | |
| 30 | pr ivate Stri ng zipCode ; | |
| 31 | pr ivate Stri ng country ; | |
| 32 | pr ivate Stri ng created By; | |
| 33 | pr ivate Date createdDa te; | |
| 34 | pr ivate Stri ng modifie dBy; | |
| 35 | pr ivate Date modifiedD ate; | |
| 36 | ||
| 37 | pu blic CBSSi tePatient( ) { | |
| 38 | } | |
| 39 | ||
| 40 | pu blic CBSSi tePatient( final long id) { | |
| 41 | this .id = id; | |
| 42 | } | |
| 43 | ||
| 44 | pu blic long getId() { | |
| 45 | retu rn id; | |
| 46 | } | |
| 47 | ||
| 48 | pu blic void setId(long id) { | |
| 49 | this .id = id; | |
| 50 | } | |
| 51 | ||
| 52 | pu blic long getSiteStm tId() { | |
| 53 | retu rn siteStm tId; | |
| 54 | } | |
| 55 | ||
| 56 | pu blic void setSiteStm tId(long s iteStmtId) { | |
| 57 | this .siteStmtI d = siteSt mtId; | |
| 58 | } | |
| 59 | ||
| 60 | pu blic Strin g getIcn() { | |
| 61 | retu rn icn; | |
| 62 | } | |
| 63 | ||
| 64 | pu blic void setIcn(Str ing icn) { | |
| 65 | this .icn = icn ; | |
| 66 | } | |
| 67 | ||
| 68 | pu blic long getDfn() { | |
| 69 | retu rn dfn; | |
| 70 | } | |
| 71 | ||
| 72 | pu blic void setDfn(lon g dfn) { | |
| 73 | this .dfn = dfn ; | |
| 74 | } | |
| 75 | ||
| 76 | pu blic Strin g getOldAc ntNum() { | |
| 77 | retu rn oldAcnt Num; | |
| 78 | } | |
| 79 | ||
| 80 | pu blic void setOldAcnt Num(String oldAcntNu m) { | |
| 81 | this .oldAcntNu m = oldAcn tNum; | |
| 82 | } | |
| 83 | ||
| 84 | pu blic Strin g getFirst Name() { | |
| 85 | retu rn firstNa me; | |
| 86 | } | |
| 87 | ||
| 88 | pu blic void setFirstNa me(String firstName) { | |
| 89 | this .firstName = firstNa me; | |
| 90 | } | |
| 91 | ||
| 92 | pu blic Strin g getLastN ame() { | |
| 93 | retu rn lastNam e; | |
| 94 | } | |
| 95 | ||
| 96 | pu blic void setLastNam e(String l astName) { | |
| 97 | this .lastName = lastName ; | |
| 98 | } | |
| 99 | ||
| 100 | pu blic Strin g getMiddl eName() { | |
| 101 | retu rn middleN ame; | |
| 102 | } | |
| 103 | ||
| 104 | pu blic void setMiddleN ame(String middleNam e) { | |
| 105 | this .middleNam e = middle Name; | |
| 106 | } | |
| 107 | ||
| 108 | pu blic Strin g getAddre ss1() { | |
| 109 | retu rn address 1; | |
| 110 | } | |
| 111 | ||
| 112 | pu blic void setAddress 1(String a ddress1) { | |
| 113 | this .address1 = address1 ; | |
| 114 | } | |
| 115 | ||
| 116 | pu blic Strin g getAddre ss2() { | |
| 117 | retu rn address 2; | |
| 118 | } | |
| 119 | ||
| 120 | pu blic void setAddress 2(String a ddress2) { | |
| 121 | this .address2 = address2 ; | |
| 122 | } | |
| 123 | ||
| 124 | pu blic Strin g getAddre ss3() { | |
| 125 | retu rn address 3; | |
| 126 | } | |
| 127 | ||
| 128 | pu blic void setAddress 3(String a ddress3) { | |
| 129 | this .address3 = address3 ; | |
| 130 | } | |
| 131 | ||
| 132 | pu blic Strin g getCity( ) { | |
| 133 | retu rn city; | |
| 134 | } | |
| 135 | ||
| 136 | pu blic void setCity(St ring city) { | |
| 137 | this .city = ci ty; | |
| 138 | } | |
| 139 | ||
| 140 | pu blic Strin g getState () { | |
| 141 | retu rn state; | |
| 142 | } | |
| 143 | ||
| 144 | pu blic void setState(S tring stat e) { | |
| 145 | this .state = s tate; | |
| 146 | } | |
| 147 | ||
| 148 | pu blic Strin g getZipCo de() { | |
| 149 | retu rn zipCode ; | |
| 150 | } | |
| 151 | ||
| 152 | pu blic void setZipCode (String zi pCode) { | |
| 153 | this .zipCode = zipCode; | |
| 154 | } | |
| 155 | ||
| 156 | pu blic Strin g getCount ry() { | |
| 157 | retu rn country ; | |
| 158 | } | |
| 159 | ||
| 160 | pu blic void setCountry (String co untry) { | |
| 161 | this .country = country; | |
| 162 | } | |
| 163 | ||
| 164 | @O verride | |
| 165 | pu blic Strin g getCreat edBy() { | |
| 166 | retu rn created By; | |
| 167 | } | |
| 168 | ||
| 169 | @O verride | |
| 170 | pu blic void setCreated By(String createdBy) { | |
| 171 | this .createdBy = created By; | |
| 172 | } | |
| 173 | ||
| 174 | @O verride | |
| 175 | pu blic Date getCreated Date() { | |
| 176 | retu rn created Date; | |
| 177 | } | |
| 178 | ||
| 179 | @O verride | |
| 180 | pu blic void setCreated Date(Date createdDat e) { | |
| 181 | this .createdDa te = creat edDate; | |
| 182 | } | |
| 183 | ||
| 184 | @O verride | |
| 185 | pu blic Strin g getModif iedBy() { | |
| 186 | retu rn modifie dBy; | |
| 187 | } | |
| 188 | ||
| 189 | @O verride | |
| 190 | pu blic void setModifie dBy(String modifiedB y) { | |
| 191 | this .modifiedB y = modifi edBy; | |
| 192 | } | |
| 193 | ||
| 194 | @O verride | |
| 195 | pu blic Date getModifie dDate() { | |
| 196 | retu rn modifie dDate; | |
| 197 | } | |
| 198 | ||
| 199 | @O verride | |
| 200 | pu blic void setModifie dDate(Date modifiedD ate) { | |
| 201 | this .modifiedD ate = modi fiedDate; | |
| 202 | } | |
| 203 | ||
| 204 | @O verride | |
| 205 | pu blic Strin g toString () { | |
| 206 | retu rn "CBSStm tPatient [ id=" + id + ", siteS tmtId=" + siteStmtId + ", icn= " + icn + ", dfn=" + dfn | |
| 207 | + ", old AcntNum=" + oldAcntN um + ", fi rstName=" + firstNam e + ", las tName=" + lastName + ", middle Name=" | |
| 208 | + middle Name + ", address1=" + address 1 + ", add ress2=" + address2 + ", addres s3=" + add ress3 | |
| 209 | + ", cit y=" + city + ", stat e=" + stat e + ", zip Code=" + z ipCode + " , country= " + countr y | |
| 210 | + ", cre atedBy=" + createdBy + ", crea tedDate=" + createdD ate + ", m odifiedBy= " + modifi edBy | |
| 211 | + ", mod ifiedDate= " + modifi edDate + " ]"; | |
| 212 | } | |
| 213 | ||
| 214 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.