157. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/7/2018 11:35:57 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.

157.1 Files compared

# Location File Last Modified
1 C:\SCRUB\MHED\MHED\VAR 4.10.0\var-resources-release-4.10@1091a011694\VeteranAppointmentRequestService\src\main\java\gov\va\vamf\scheduling\direct\datalayer\user VarPatientCorrelationGateway.java Thu Oct 18 18:44:32 2018 UTC
2 C:\MHED-scrubbed\MHED\MHED\VAR 4.10.0\var-resources-release-4.10@1091a011694\VeteranAppointmentRequestService\src\main\java\gov\va\vamf\scheduling\direct\datalayer\user VarPatientCorrelationGateway.java Fri Dec 7 13:06:14 2018 UTC

157.2 Comparison summary

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

157.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

157.4 Active regular expressions

No regular expressions were active.

157.5 Comparison detail

  1   package go v.va.vamf. scheduling .direct.da talayer.us er;
  2  
  3   import com .agilex.he althcare.m obilehealt hplatform. domain.Pat ientIdenti fier;
  4   import com .agilex.he althcare.m obilehealt hplatform. domain.Pat ientIdenti fiers;
  5   import com .agilex.va .mpi.Patie ntCorrelat ionGateway ;
  6   import com .google.co mmon.base. Preconditi ons;
  7  
  8   import jav ax.annotat ion.Resour ce;
  9  
  10   public cla ss VarPati entCorrela tionGatewa y {
  11  
  12       @Resou rce
  13       protec ted Patien tCorrelati onGateway  patientCor relationGa teway;
  14       
  15       public  PatientId entifiers  getCorresp ondIdentif iers(final  PatientId entifier p atientIden tifier) {
  16  
  17           if  (System.g etenv("moc k.mvi").eq ualsIgnore Case("true ")) {
  18                  // we are  set to moc k, return  IDs for  pw_reda c t e d
  19                PatientI dentifiers  ids = new  PatientId entifiers( );
  20                //ids.ad d(new Pati entIdentif ier("ICN",  "10060889 37"));
  21                //ids.ad d(new Pati entIdentif ier("dfn-5 16", "7188 450"));
  22                //ids.ad d(new Pati entIdentif ier("dfn-6 31", "7188 450"));
  23                //ids.ad d(new Pati entIdentif ier("EDIPI ", "111313 8327"));
  24  
  25                //ids.ad d(new Pati entIdentif ier("ICN",  "50000003 57"));
  26                ids.add( new Patien tIdentifie r("ICN", " 1006088937 "));
  27                ids.add( new Patien tIdentifie r("dfn-523 ", "100718 "));
  28  
  29                return i ds;
  30           }
  31  
  32           re turn patie ntCorrelat ionGateway .getCorres pondIdenti fiers(pati entIdentif ier);
  33       }
  34  
  35   }