44468. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 8/1/2019 1:42:43 PM Eastern Daylight 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.

44468.1 Files compared

# Location File Last Modified
1 JLV_2_8_0_0_0_July_2019.zip\JLV_2_8_0_0_0_July_2019\jMeadows\src\main\java\gov\va\med\jmeadows\dao\beans PDWSQueryBean.java Mon Jul 8 18:58:48 2019 UTC
2 JLV_2_8_0_0_0_July_2019.zip\JLV_2_8_0_0_0_July_2019\jMeadows\src\main\java\gov\va\med\jmeadows\dao\beans PDWSQueryBean.java Wed Jul 31 23:50:15 2019 UTC

44468.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 318
Changed 1 2
Inserted 0 0
Removed 0 0

44468.3 Comparison options

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

44468.4 Active regular expressions

No regular expressions were active.

44468.5 Comparison detail

  1   /*
  2    * Janus 4 .0 (c)
  3    * Copyrig ht (c) 201 2 Hawaii R esource Gr oup LLC. A ll Rights  Reserved.
  4    * Develop ed for the  Pacific T elehealth  & Technolo gy Hui and  the Pacif ic Joint I nformation  Technolog y Center
  5    * Contrib utors:
  6    *      Ho norable Se nator Dani el K. Inou ye
  7    *      VA  Pacific I slands Hea lth Care S ystem
  8    *      Tr ipler Army  Medical C enter
  9    */
  10  
  11   package go v.va.med.j meadows.da o.beans;
  12  
  13   import gov .va.med.vd s.webservi ce.User;
  14  
  15   /**
  16    * Created  with Inte lliJ IDEA.
  17    * User:  DNS
  18    * Date: 1 1/21/12
  19    * Time: 8 :09 AM
  20    * To chan ge this te mplate use  File | Se ttings | F ile Templa tes.
  21    */
  22   public cla ss PDWSQue ryBean {
  23       privat e User use r;
  24       privat e String r equestingA pp;
  25  
  26       // Req uired sear ch attribu tes
  27       privat e String p atientId;
  28       privat e String p atientIdTy pe;
  29       privat e String f irstName;
  30       privat e String m iddleName;
  31       privat e String l astName;
  32       privat e String d ob;
  33       privat e String g ender;
  34       privat e String a ddress;
  35       privat e String c ity;
  36       privat e String s tate;
  37       privat e String z ip;
  38       privat e String t el;
  39       privat e String i nquiryType ;
  40  
  41       public  User getU ser() {
  42           re turn user;
  43       }
  44  
  45       public  void setU ser(User u ser) {
  46           th is.user =  user;
  47       }
  48  
  49       public  String ge tRequestin gApp() {
  50           re turn reque stingApp;
  51       }
  52  
  53       public  void setR equestingA pp(String  requesting App) {
  54           th is.request ingApp = r equestingA pp;
  55       }
  56  
  57       public  String ge tPatientId () {
  58           re turn patie ntId;
  59       }
  60  
  61       public  void setP atientId(S tring pati entId) {
  62           th is.patient Id = patie ntId;
  63       }
  64  
  65       public  String ge tPatientId Type() {
  66           re turn patie ntIdType;
  67       }
  68  
  69       public  void setP atientIdTy pe(String  patientIdT ype) {
  70           th is.patient IdType = p atientIdTy pe;
  71       }
  72  
  73       public  String ge tFirstName () {
  74           re turn first Name;
  75       }
  76  
  77       public  void setF irstName(S tring firs tName) {
  78           th is.firstNa me = first Name;
  79       }
  80  
  81       public  String ge tMiddleNam e() {
  82           re turn middl eName;
  83       }
  84  
  85       public  void setM iddleName( String mid dleName) {
  86           th is.middleN ame = midd leName;
  87       }
  88  
  89       public  String ge tLastName( ) {
  90           re turn lastN ame;
  91       }
  92  
  93       public  void setL astName(St ring lastN ame) {
  94           th is.lastNam e = lastNa me;
  95       }
  96  
  97       public  String ge tDob() {
  98           re turn dob;
  99       }
  100  
  101       public  void setD ob(String  dob) {
  102           th is.dob = d ob;
  103       }
  104  
  105       public  String ge tGender()  {
  106           re turn gende r;
  107       }
  108  
  109       public  void setG ender(Stri ng gender)  {
  110           th is.gender  = gender;
  111       }
  112  
  113       public  String ge tAddress()  {
  114           re turn addre ss;
  115       }
  116  
  117       public  void setA ddress(Str ing addres s) {
  118           th is.address  = address ;
  119       }
  120  
  121       public  String ge tCity() {
  122           re turn city;
  123       }
  124  
  125       public  void setC ity(String  city) {
  126           th is.city =  city;
  127       }
  128  
  129       public  String ge tState() {
  130           re turn state ;
  131       }
  132  
  133       public  void setS tate(Strin g state) {
  134           th is.state =  state;
  135       }
  136  
  137       public  String ge tZip() {
  138           re turn zip;
  139       }
  140  
  141       public  void setZ ip(String  zip) {
  142           th is.zip = z ip;
  143       }
  144  
  145       public  String ge tTel() {
  146           re turn tel;
  147       }
  148  
  149       public  void setT el(String  tel) {
  150           th is.tel = t el;
  151       }
  152  
  153       public  String ge tInquiryTy pe() {
  154           re turn inqui ryType;
  155       }
  156  
  157       public  void setI nquiryType (String in quiryType)  {
  158           th is.inquiry Type = inq uiryType;
  159       }
  160   }