358. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:30 AM Eastern 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.

358.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\rule RuleDataAware.java Fri Dec 7 17:36:18 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\rule RuleDataAware.java Wed Dec 12 19:46:45 2018 UTC

358.2 Comparison summary

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

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

358.4 Active regular expressions

No regular expressions were active.

358.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** ********** ********** **********
  2    * Copyrii ght 2004 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.f w.rule;
  5  
  6   // Java cl asses
  7   import jav a.io.Seria lizable;
  8  
  9   import gov .va.med.fw .model.Abs tractEntit y;
  10  
  11   // EDB cla sses
  12  
  13   /**
  14    * Project : Framewor k
  15    * 
  16    * @author   DN S
  17    * @versio n 1.0
  18    */
  19   public int erface Rul eDataAware  extends S erializabl e {
  20  
  21           /* *
  22            *  Returns a  printine  entity sto red in an  input data  collectio n
  23            *  
  24            *  @return A  printine  version of  an entity
  25            * /
  26           pu blic Abstr actEntity  getPristin eData();
  27  
  28           /* *
  29            *  Sets a pr istine ent ity stored  in an inp ut data co llection
  30            *  
  31            *  @param pr istine
  32            *              A pristi ne version  of an ent ity
  33            * /
  34           pu blic void  setPristin eData(Abst ractEntity  pristine) ;
  35  
  36           /* *
  37            *  Returns a n incoming  entity st ored in an  input dat a collecti on
  38            *  
  39            *  @return A n incoming  version o f an entit y
  40            * /
  41           pu blic Abstr actEntity  getIncomin gData();
  42  
  43           /* *
  44            *  Sets an i ncoming en tity store d in an in put data c ollection
  45            *  
  46            *  @param in coming
  47            *              An incom ing versio n of an en tity
  48            * /
  49           pu blic void  setIncomin gData(Abst ractEntity  incoming) ;
  50  
  51           /* *
  52            *  Returns a  result en tity store d in an in put data c ollection
  53            *  
  54            *  @return A  result ve rsion of a n entity
  55            * /
  56           pu blic Abstr actEntity  getResultD ata();
  57  
  58           /* *
  59            *  Sets a re sult entit y stored i n an input  data coll ection
  60            *  
  61            *  @param re sult
  62            *              A result  version o f an entit y
  63            * /
  64           pu blic void  setResultD ata(Abstra ctEntity r esult);
  65   }