104. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/15/2018 10:47:50 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.

104.1 Files compared

# Location File Last Modified
1 MHV_2018.4.0.0.zip\2018.4.0.0\national portal\mhv_source\mhv_integration\mhv-integration-phr\mhv-integration-phrmgr-data-api\src\main\java\gov\va\med\mhv\integration\phr\stage\transfer StagePathwaysAppointment.java Thu Aug 23 21:20:26 2018 UTC
2 MHV_2018.4.0.0.zip\2018.4.0.0\national portal\mhv_source\mhv_integration\mhv-integration-phr\mhv-integration-phrmgr-data-api\src\main\java\gov\va\med\mhv\integration\phr\stage\transfer StagePathwaysAppointment.java Sat Sep 15 21:35:01 2018 UTC

104.2 Comparison summary

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

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

104.4 Active regular expressions

No regular expressions were active.

104.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.m hv.integra tion.phr.s tage.trans fer;
  5  
  6   /**
  7    * @author   DNS
  8    *
  9    */
  10   public cla ss StagePa thwaysAppo intment ex tends Stag eAppointme nt {
  11           
  12           pu blic void  setAK(Stag eEntityAK  ak) {
  13           th is.icn=ak. getIcn();
  14           th is.request MsgCtrlId= ak.getRequ estMsgCtrl Id();
  15           th is.respons eMsgCtrlId =ak.getRes ponseMsgCt rlId();
  16       }
  17  
  18           pu blic Strin g toString () {
  19           re turn "Stag eAppointme nt{" +
  20                             "icn=' " + icn +  '\'' +
  21                    ", i en='" + ie n + '\'' +
  22                    ", c linic='" +  clinic +  '\'' +
  23                    ", s tatus='" +  status +  '\'' +
  24                    ", a ppointment Type='" +  appointmen tType + '\ '' +
  25                    ", c linicphone ='" + clin icphone +  '\'' +
  26                    ", e kgDateStri ng='" + ek gDateStrin g + '\'' +
  27                    ", e kgDate=" +  ekgDate +
  28                    ", x rayDateStr ing='" + x rayDateStr ing + '\''  +
  29                    ", x rayDate="  + xrayDate  +
  30                    ", l abDateStri ng='" + la bDateStrin g + '\'' +
  31                    ", l abDate=" +  labDate +
  32                    ", a ppointment DateString ='" + appo intmentDat eString +  '\'' +
  33                    ", a ppointment Date=" + a ppointment Date +
  34                    ", c urrentStat us='" + cu rrentStatu s + '\'' +
  35                    ", l ocation='"  + locatio n + '\'' +
  36                    '}';
  37       }
  38           
  39   }