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

225.1 Files compared

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

225.2 Comparison summary

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

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

225.4 Active regular expressions

No regular expressions were active.

225.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.batchpro cess;
  6  
  7   import jav a.util.Lis t;
  8  
  9   import gov .va.med.fw .persisten t.QueryInc rementTrac ker;
  10  
  11   /**
  12    * Initial  javadoc f or class D ataQueryPr ocessExecu tionContex t. TODO -  Add
  13    * content  here
  14    * 
  15    * Created  Feb 17, 2 006 3:34:1 4 PM
  16    * 
  17    * DNS
  18    */
  19   public cla ss DataQue ryProcessE xecutionCo ntext exte nds DataPr ocessExecu tionContex t implemen ts
  20                    Quer yIncrement Tracker {
  21           /* *
  22            *  serialVer sionUID lo ng
  23            * /
  24           pr ivate stat ic final l ong serial VersionUID  = 5539533 0784307404 34L;
  25           pr ivate int  currentRec ord;
  26           pr ivate Data QueryDetai l currentD ataQuery;
  27  
  28           /* *
  29            *  @return R eturns the  currentRe cord.
  30            * /
  31           pu blic int g etCurrentR ecord() {
  32                    retu rn current Record;
  33           }
  34  
  35           /* *
  36            *  @param cu rrentRecor d
  37            *              The curr entRecord  to set.
  38            * /
  39           pu blic void  setCurrent Record(int  currentRe cord) {
  40                    this .currentRe cord = cur rentRecord ;
  41           }
  42  
  43           /* *
  44            *  @return R eturns the  currentDa taQuery.
  45            * /
  46           pu blic DataQ ueryDetail  getCurren tDataQuery () {
  47                    retu rn current DataQuery;
  48           }
  49  
  50           /* *
  51            *  @param cu rrentDataQ uery
  52            *              The curr entDataQue ry to set.
  53            * /
  54           pu blic void  setCurrent DataQuery( DataQueryD etail curr entDataQue ry) {
  55                    this .currentDa taQuery =  currentDat aQuery;
  56           }
  57  
  58           /*
  59            *  (non-Java doc)
  60            *  
  61            *  @see gov. va.med.fw. persistent .QueryIncr ementTrack er#getIncr ementalDat a()
  62            * /
  63           pu blic List  getIncreme ntalData()  {
  64                    retu rn getProc essedData( );
  65           }
  66  
  67           /*
  68            *  (non-Java doc)
  69            *  
  70            *  @see
  71            *  gov.va.me d.fw.persi stent.Quer yIncrement Tracker#se tIncrement alData(jav a
  72            *  .util.Lis t)
  73            * /
  74           pu blic void  setIncreme ntalData(L ist data)  {
  75                    setP rocessedDa ta(data);
  76           }
  77  
  78           /*
  79            *  (non-Java doc)
  80            *  
  81            *  @see gov. va.med.fw. persistent .QueryIncr ementTrack er#getTota lRecords()
  82            * /
  83           pu blic int g etTotalRec ords() {
  84                    retu rn getProc essStatist ics().getN umberOfTot alRecords( );
  85           }
  86  
  87           /*
  88            *  (non-Java doc)
  89            *  
  90            *  @see gov. va.med.fw. persistent .QueryIncr ementTrack er#setTota lRecords(i nt)
  91            * /
  92           pu blic void  setTotalRe cords(int  i) {
  93                    this .getProces sStatistic s().setNum berOfTotal Records(i) ;
  94           }
  95   }