114. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:11 AM 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.

114.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\batchprocess DataProcessExecutionContext.java Wed May 29 15:26:00 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\batchprocess DataProcessExecutionContext.java Mon Jun 10 19:30:04 2019 UTC

114.2 Comparison summary

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

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

114.4 Active regular expressions

No regular expressions were active.

114.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.Arr ayList;
  8   import jav a.util.Has hMap;
  9   import jav a.util.Lis t;
  10   import jav a.util.Map ;
  11  
  12   /**
  13    * Context  informati on about t he running  execution  of a batc h process.
  14    * 
  15    * Created  Feb 16, 2 006 1:44:3 0 PM
  16    * 
  17    * @author   DNS     DN S
  18    */
  19   public cla ss DataPro cessExecut ionContext  {
  20           pr ivate Proc essStatist ics proces sStatistic s;
  21           pr ivate Obje ct executi onArgument s;
  22           pr ivate Stri ng initiat er;
  23           pr ivate List  exception Data = new  ArrayList ();
  24           pr ivate List  processed Data = new  ArrayList ();
  25           pr ivate Map  contextDat a = new Ha shMap();
  26           pr ivate bool ean interr upted;
  27  
  28           /* *
  29            *  @return R eturns the  processSt atistics.
  30            * /
  31           pu blic Proce ssStatisti cs getProc essStatist ics() {
  32                    retu rn process Statistics ;
  33           }
  34  
  35           /* *
  36            *  @param pr ocessStati stics
  37            *              The proc essStatist ics to set .
  38            * /
  39           pu blic void  setProcess Statistics (ProcessSt atistics p rocessStat istics) {
  40                    this .processSt atistics =  processSt atistics;
  41           }
  42  
  43           /* *
  44            *  @return R eturns the  execution Arguments.
  45            * /
  46           pu blic Objec t getExecu tionArgume nts() {
  47                    retu rn executi onArgument s;
  48           }
  49  
  50           /* *
  51            *  @param ex ecutionArg uments
  52            *              The exec utionArgum ents to se t.
  53            * /
  54           pu blic void  setExecuti onArgument s(Object e xecutionAr guments) {
  55                    this .execution Arguments  = executio nArguments ;
  56           }
  57  
  58           /* *
  59            *  @return R eturns the  exception Data.
  60            * /
  61           pu blic List  getExcepti onData() {
  62                    retu rn excepti onData;
  63           }
  64  
  65           /* *
  66            *  @param ex ceptionDat a
  67            *              The exce ptionData  to set.
  68            * /
  69           pu blic void  setExcepti onData(Lis t exceptio nData) {
  70                    this .exception Data = exc eptionData ;
  71           }
  72  
  73           /* *
  74            *  @return R eturns the  processed Data.
  75            * /
  76           pu blic List  getProcess edData() {
  77                    retu rn process edData;
  78           }
  79  
  80           /* *
  81            *  @param pr ocessedDat a
  82            *              The proc essedData  to set.
  83            * /
  84           pu blic void  setProcess edData(Lis t processe dData) {
  85                    this .processed Data = pro cessedData ;
  86           }
  87  
  88           /* *
  89            *  @return R eturns the  contextDa ta.
  90            * /
  91           pu blic Map g etContextD ata() {
  92                    retu rn context Data;
  93           }
  94  
  95           /* *
  96            *  @return R eturns the  initiater .
  97            * /
  98           pu blic Strin g getIniti ater() {
  99                    retu rn initiat er;
  100           }
  101  
  102           /* *
  103            *  @param in itiater
  104            *              The init iater to s et.
  105            * /
  106           pu blic void  setInitiat er(String  initiater)  {
  107                    this .initiater  = initiat er;
  108           }
  109  
  110           /* *
  111            *  @return t he interru pted
  112            * /
  113           pu blic boole an isInter rupted() {
  114                    retu rn interru pted;
  115           }
  116  
  117           /* *
  118            *  @param in terrupted
  119            *              the inte rrupted to  set
  120            * /
  121           pu blic void  setInterru pted(boole an interru pted) {
  122                    this .interrupt ed = inter rupted;
  123           }
  124   }