60. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/11/2017 8:05:40 AM Central 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.

60.1 Files compared

# Location File Last Modified
1 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\sms_main\sms_source\mhv_sms_ng\mhv-sm-domain\src\main\java\gov\va\med\mhv\sm\model\report MessagesByProvider.java Sat May 13 00:13:56 2017 UTC
2 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\sms_main\sms_source\mhv_sms_ng\mhv-sm-domain\src\main\java\gov\va\med\mhv\sm\model\report MessagesByProvider.java Thu Sep 7 19:20:08 2017 UTC

60.2 Comparison summary

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

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

60.4 Active regular expressions

No regular expressions were active.

60.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.m hv.sm.mode l.report;
  5  
  6   import gov .va.med.mh v.sm.model .Clinician ;
  7  
  8   import jav a.io.Seria lizable;
  9  
  10   /**
  11    * @author   DNS     MCCARW
  12    *
  13    */
  14   public cla ss Message sByProvide r implemen ts Seriali zable{
  15  
  16           pr ivate Clin ician clin ician;
  17           pr ivate long  read;
  18           pr ivate long  unread;
  19           pr ivate long  escalated ;
  20           pr ivate long  progressN ote;
  21           pr ivate long  total;
  22           
  23           pu blic Clini cian getCl inician()  {
  24                    retu rn clinici an;
  25           }
  26           pu blic void  setClinici an(Clinici an clinici an) {
  27                    this .clinician  = clinici an;
  28           }
  29           pu blic long  getRead()  {
  30                    retu rn read;
  31           }
  32           pu blic void  setRead(lo ng read) {
  33                    this .read = re ad;
  34           }
  35           pu blic long  getUnread( ) {
  36                    retu rn unread;
  37           }
  38           pu blic void  setUnread( long unrea d) {
  39                    this .unread =  unread;
  40           }
  41           pu blic long  getEscalat ed() {
  42                    retu rn escalat ed;
  43           }
  44           pu blic void  setEscalat ed(long es calated) {
  45                    this .escalated  = escalat ed;
  46           }
  47           pu blic long  getProgres sNote() {
  48                    retu rn progres sNote;
  49           }
  50           pu blic void  setProgres sNote(long  progressN ote) {
  51                    this .progressN ote = prog ressNote;
  52           }
  53           pu blic long  getTotal()  {
  54                    retu rn total;
  55           }
  56           pu blic void  setTotal(l ong total)  {
  57                    this .total = t otal;
  58           }
  59   }