115. EPMO Open Source Coordination Office Redaction File Detail Report

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

115.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-main\src\main\java\gov\va\med\mhv\integration\phr\service AbstractProcessingPolicy.java Thu Aug 23 21:20:40 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-main\src\main\java\gov\va\med\mhv\integration\phr\service AbstractProcessingPolicy.java Sat Sep 15 21:40:18 2018 UTC

115.2 Comparison summary

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

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

115.4 Active regular expressions

No regular expressions were active.

115.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.m hv.integra tion.phr.s ervice;
  5  
  6   import gov .va.med.mh v.integrat ion.phr.tr ansfer.Fac ilityExtra ctStatus;
  7  
  8   import jav a.util.Dat e;
  9  
  10   /**
  11    * @author   DNS
  12    *
  13    */
  14   public abs tract clas s Abstract Processing Policy imp lements Pr ocessingPo licy {
  15  
  16           pr otected bo olean enab led = true ;
  17           
  18           /*  (non-Java doc)
  19            *  @see gov. va.med.mhv .integrati on.phr.ser vice.Proce ssingPolic y#setEnabl ed(boolean )
  20            * /
  21           @O verride
  22           pu blic void  setEnabled (boolean v alue) {
  23                    this .enabled =  value;
  24           }
  25  
  26           /*  (non-Java doc)
  27            *  @see gov. va.med.mhv .integrati on.phr.ser vice.Proce ssingPolic y#isEnable d()
  28            * /
  29           @O verride
  30           pu blic boole an isEnabl ed() {
  31                    retu rn this.en abled;
  32           }
  33  
  34           /*  (non-Java doc)
  35            *  @see gov. va.med.mhv .integrati on.phr.ser vice.Proce ssingPolic y#isAllowe d(java.uti l.Date)
  36            * /
  37           @O verride
  38           pu blic abstr act boolea n isAllowe d(Date las tProcessed );
  39  
  40           /*  (non-Java doc)
  41            *  @see gov. va.med.mhv .integrati on.phr.ser vice.Proce ssingPolic y#isAllowe d(gov.va.m ed.mhv.int egration.p hr.transfe r.Facility ExtractSta tus)
  42            * /
  43           @O verride
  44           pu blic abstr act boolea n isAllowe d(Facility ExtractSta tus es);
  45  
  46           /*  (non-Java doc)
  47            *  @see gov. va.med.mhv .integrati on.phr.ser vice.Proce ssingPolic y#getProje ctedDate(j ava.util.D ate)
  48            * /
  49           @O verride
  50           pu blic abstr act Date g etProjecte dDate(Date  lastProce ssed);
  51  
  52   }