250. EPMO Open Source Coordination Office Redaction File Detail Report

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

250.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\io\parser FileParserListener.java Fri Dec 7 17:36:38 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\io\parser FileParserListener.java Wed Dec 12 22:26:42 2018 UTC

250.2 Comparison summary

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

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

250.4 Active regular expressions

No regular expressions were active.

250.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2005 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.io.parse r;
  6  
  7   import jav a.util.Lis t;
  8  
  9   import gov .va.med.fw .batchproc ess.DataFi leProcessE xecutionCo ntext;
  10  
  11   /**
  12    * Interfa ce for tho se service s that pro cess data  from a fil e and woul d like to
  13    * be noti fied after  n number  of objects  created.  Allows to  process da ta in
  14    * chunks,  or even o ne at a ti me - rathe r than wai ting for a ll the dat a to be
  15    * built.
  16    * 
  17    * Created  Feb 2, 20 06 4:04:45  PM
  18    * 
  19    * DNS
  20    */
  21   public int erface Fil eParserLis tener {
  22           pu blic boole an acceptD ata(DataFi leProcessE xecutionCo ntext cont ext, Strin g nextRowR awData,
  23                             List b eans);
  24  
  25           pu blic void  processDat a(DataFile ProcessExe cutionCont ext contex t, List ac quiredData )
  26                             throws  Exception ;
  27  
  28           /* *
  29            *  
  30            *  @param co ntext
  31            *  @param e
  32            *  @return I ndicates t o caller i f they sho uld keep a ny accumul ated data
  33            * /
  34           pu blic boole an beanCre ationFailu re(DataFil eProcessEx ecutionCon text conte xt,
  35                             String  nextRowRa wData, Exc eption e);
  36  
  37           pu blic void  beanCreati onSuccess( DataFilePr ocessExecu tionContex t context,  String ne xtRowRawDa ta);
  38  
  39           pu blic boole an isInter rupted(Dat aFileProce ssExecutio nContext c ontext);
  40   }