Produced by Araxis Merge on 12/13/2018 10:35:22 AM 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 | v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\model\qir | QIRSearchParameters.java | Fri Dec 7 17:36:32 2018 UTC |
| 2 | v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\model\qir | QIRSearchParameters.java | Wed Dec 12 22:33:38 2018 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 450 |
| 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 | /** | |
| 2 | * | |
| 3 | */ | |
| 4 | package go v.va.med.c cht.model. qir; | |
| 5 | ||
| 6 | import jav a.io.Seria lizable; | |
| 7 | import jav a.util.Dat e; | |
| 8 | import jav a.util.Lis t; | |
| 9 | import jav a.util.Map ; | |
| 10 | ||
| 11 | import jav ax.validat ion.Valid; | |
| 12 | ||
| 13 | import gov .va.med.fw .ui.model. TermType; | |
| 14 | ||
| 15 | /** | |
| 16 | * @author DNS | |
| 17 | * | |
| 18 | */ | |
| 19 | public cla ss QIRSear chParamete rs impleme nts Serial izable { | |
| 20 | ||
| 21 | pr ivate stat ic final l ong serial VersionUID = -818575 0419457432 313L; | |
| 22 | ||
| 23 | pr ivate Stri ng id; | |
| 24 | @V alid | |
| 25 | pr ivate Term Type qirTy pe; | |
| 26 | @V alid | |
| 27 | pr ivate List <String> q irStatuses ; | |
| 28 | @V alid | |
| 29 | pr ivate Term Type visn; | |
| 30 | @V alid | |
| 31 | pr ivate Term Type facil ity; | |
| 32 | @V alid | |
| 33 | pr ivate Term Type devic eType; | |
| 34 | @V alid | |
| 35 | pr ivate Term Type vendo r; | |
| 36 | pr ivate Stri ng submitt edBy; | |
| 37 | pr ivate Date submitted FromDate; | |
| 38 | pr ivate Date submitted ToDate; | |
| 39 | pr ivate Inte ger maxRec ords; | |
| 40 | pr ivate Bool ean isVend or; | |
| 41 | ||
| 42 | // Members f or populat ing dropdo wns | |
| 43 | pr ivate Map< String, Te rmType> fa cilities; | |
| 44 | pr ivate Stri ng selecte dFacilityI d; | |
| 45 | ||
| 46 | pr ivate Map< String, Te rmType> ve ndors; | |
| 47 | pr ivate Stri ng selecte dVendorId; | |
| 48 | ||
| 49 | pr ivate Map< String, Te rmType> ty pesOfCompl aint; | |
| 50 | pr ivate Stri ng selecte dComplaint TypeId; | |
| 51 | ||
| 52 | pr ivate Map< String, Te rmType> st atusTypes; | |
| 53 | pr ivate Stri ng selecte dStatusTyp eId; | |
| 54 | ||
| 55 | pr ivate Stri ng fromDat eAsString; | |
| 56 | pr ivate Stri ng toDateA sString; | |
| 57 | ||
| 58 | pu blic Strin g getId() { | |
| 59 | retu rn id; | |
| 60 | } | |
| 61 | ||
| 62 | pu blic void setId(Stri ng id) { | |
| 63 | this .id = id; | |
| 64 | } | |
| 65 | ||
| 66 | pu blic TermT ype getQir Type() { | |
| 67 | retu rn qirType ; | |
| 68 | } | |
| 69 | ||
| 70 | pu blic void setQirType (TermType qirType) { | |
| 71 | this .qirType = qirType; | |
| 72 | } | |
| 73 | ||
| 74 | pu blic List< String> ge tQirStatus es() { | |
| 75 | retu rn qirStat uses; | |
| 76 | } | |
| 77 | ||
| 78 | pu blic void setQirStat uses(List< String> qi rStatuses) { | |
| 79 | this .qirStatus es = qirSt atuses; | |
| 80 | } | |
| 81 | ||
| 82 | pu blic TermT ype getVis n() { | |
| 83 | retu rn visn; | |
| 84 | } | |
| 85 | ||
| 86 | pu blic void setVisn(Te rmType vis n) { | |
| 87 | this .visn = vi sn; | |
| 88 | } | |
| 89 | ||
| 90 | pu blic TermT ype getFac ility() { | |
| 91 | retu rn facilit y; | |
| 92 | } | |
| 93 | ||
| 94 | pu blic void setFacilit y(TermType facility) { | |
| 95 | this .facility = facility ; | |
| 96 | } | |
| 97 | ||
| 98 | pu blic TermT ype getDev iceType() { | |
| 99 | retu rn deviceT ype; | |
| 100 | } | |
| 101 | ||
| 102 | pu blic void setDeviceT ype(TermTy pe deviceT ype) { | |
| 103 | this .deviceTyp e = device Type; | |
| 104 | } | |
| 105 | ||
| 106 | pu blic TermT ype getVen dor() { | |
| 107 | retu rn vendor; | |
| 108 | } | |
| 109 | ||
| 110 | pu blic void setVendor( TermType v endor) { | |
| 111 | this .vendor = vendor; | |
| 112 | } | |
| 113 | ||
| 114 | pu blic Strin g getSubmi ttedBy() { | |
| 115 | retu rn submitt edBy; | |
| 116 | } | |
| 117 | ||
| 118 | pu blic void setSubmitt edBy(Strin g submitte dBy) { | |
| 119 | this .submitted By = submi ttedBy; | |
| 120 | } | |
| 121 | ||
| 122 | pu blic Date getSubmitt edFromDate () { | |
| 123 | retu rn submitt edFromDate ; | |
| 124 | } | |
| 125 | ||
| 126 | pu blic void setSubmitt edFromDate (Date subm ittedFromD ate) { | |
| 127 | this .submitted FromDate = submitted FromDate; | |
| 128 | } | |
| 129 | ||
| 130 | pu blic Date getSubmitt edToDate() { | |
| 131 | retu rn submitt edToDate; | |
| 132 | } | |
| 133 | ||
| 134 | pu blic void setSubmitt edToDate(D ate submit tedToDate) { | |
| 135 | this .submitted ToDate = s ubmittedTo Date; | |
| 136 | } | |
| 137 | ||
| 138 | pu blic Integ er getMaxR ecords() { | |
| 139 | retu rn maxReco rds; | |
| 140 | } | |
| 141 | ||
| 142 | pu blic void setMaxReco rds(Intege r maxRecor ds) { | |
| 143 | this .maxRecord s = maxRec ords; | |
| 144 | } | |
| 145 | ||
| 146 | pu blic Boole an getIsVe ndor() { | |
| 147 | retu rn isVendo r; | |
| 148 | } | |
| 149 | ||
| 150 | pu blic void setIsVendo r(Boolean isVendor) { | |
| 151 | this .isVendor = isVendor ; | |
| 152 | } | |
| 153 | ||
| 154 | pu blic Map<S tring, Ter mType> get Facilities () { | |
| 155 | retu rn facilit ies; | |
| 156 | } | |
| 157 | ||
| 158 | pu blic void setFacilit ies(Map<St ring, Term Type> faci lities) { | |
| 159 | this .facilitie s = facili ties; | |
| 160 | } | |
| 161 | ||
| 162 | pu blic Strin g getSelec tedFacilit yId() { | |
| 163 | retu rn selecte dFacilityI d; | |
| 164 | } | |
| 165 | ||
| 166 | pu blic void setSelecte dFacilityI d(String s electedFac ilityId) { | |
| 167 | this .selectedF acilityId = selected FacilityId ; | |
| 168 | } | |
| 169 | ||
| 170 | pu blic Map<S tring, Ter mType> get Vendors() { | |
| 171 | retu rn vendors ; | |
| 172 | } | |
| 173 | ||
| 174 | pu blic void setVendors (Map<Strin g, TermTyp e> vendors ) { | |
| 175 | this .vendors = vendors; | |
| 176 | } | |
| 177 | ||
| 178 | pu blic Strin g getSelec tedVendorI d() { | |
| 179 | retu rn selecte dVendorId; | |
| 180 | } | |
| 181 | ||
| 182 | pu blic void setSelecte dVendorId( String sel ectedVendo rId) { | |
| 183 | this .selectedV endorId = selectedVe ndorId; | |
| 184 | } | |
| 185 | ||
| 186 | pu blic Map<S tring, Ter mType> get TypesOfCom plaint() { | |
| 187 | retu rn typesOf Complaint; | |
| 188 | } | |
| 189 | ||
| 190 | pu blic void setTypesOf Complaint( Map<String , TermType > typesOfC omplaint) { | |
| 191 | this .typesOfCo mplaint = typesOfCom plaint; | |
| 192 | } | |
| 193 | ||
| 194 | pu blic Strin g getSelec tedComplai ntTypeId() { | |
| 195 | retu rn selecte dComplaint TypeId; | |
| 196 | } | |
| 197 | ||
| 198 | pu blic void setSelecte dComplaint TypeId(Str ing select edComplain tTypeId) { | |
| 199 | this .selectedC omplaintTy peId = sel ectedCompl aintTypeId ; | |
| 200 | } | |
| 201 | ||
| 202 | pu blic Strin g getSelec tedStatusT ypeId() { | |
| 203 | retu rn selecte dStatusTyp eId; | |
| 204 | } | |
| 205 | ||
| 206 | pu blic void setSelecte dStatusTyp eId(String selectedS tatusTypeI d) { | |
| 207 | this .selectedS tatusTypeI d = select edStatusTy peId; | |
| 208 | } | |
| 209 | ||
| 210 | pu blic Strin g getFromD ateAsStrin g() { | |
| 211 | retu rn fromDat eAsString; | |
| 212 | } | |
| 213 | ||
| 214 | pu blic void setFromDat eAsString( String fro mDateAsStr ing) { | |
| 215 | this .fromDateA sString = fromDateAs String; | |
| 216 | } | |
| 217 | ||
| 218 | pu blic Strin g getToDat eAsString( ) { | |
| 219 | retu rn toDateA sString; | |
| 220 | } | |
| 221 | ||
| 222 | pu blic void setToDateA sString(St ring toDat eAsString) { | |
| 223 | this .toDateAsS tring = to DateAsStri ng; | |
| 224 | } | |
| 225 | ||
| 226 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.