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

115.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\batchprocess DataProcessWorkerInput.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 DataProcessWorkerInput.java Mon Jun 10 19:30:04 2019 UTC

115.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 232
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    * Copyrii ght 2006 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.batchpro cess;
  6  
  7   import jav a.io.Seria lizable;
  8  
  9   /**
  10    * Initial  javadoc f or class D ataProcess WorkerInpu t. TODO -  Add conten t here
  11    * 
  12    * Created  Sep 21, 2 006 3:31:3 3 PM
  13    * 
  14    * @author   DNS     DN S
  15    */
  16   public cla ss DataPro cessWorker Input impl ements Ser ializable  {
  17           /* *
  18            *  serialVer sionUID lo ng
  19            * /
  20           pr ivate stat ic final l ong serial VersionUID  = -126094 1570143949 08L;
  21           pr ivate Seri alizable i d;
  22           pr ivate Stri ng context ;
  23           pr ivate Stri ng process Name;
  24           pr ivate int  totalCount ;
  25           pr ivate int  payloadCou nt;
  26           pr ivate Obje ct payload ;
  27  
  28           /* *
  29            *  @return R eturns the  context.
  30            * /
  31           pu blic Strin g getConte xt() {
  32                    retu rn context ;
  33           }
  34  
  35           /* *
  36            *  @param co ntext
  37            *              The cont ext to set .
  38            * /
  39           pu blic void  setContext (String co ntext) {
  40                    this .context =  context;
  41           }
  42  
  43           /* *
  44            *  @return R eturns the  payload.
  45            * /
  46           pu blic Objec t getPaylo ad() {
  47                    retu rn payload ;
  48           }
  49  
  50           /* *
  51            *  @param pa yload
  52            *              The payl oad to set .
  53            * /
  54           pu blic void  setPayload (Object pa yload) {
  55                    this .payload =  payload;
  56           }
  57  
  58           /* *
  59            *  @return R eturns the  payloadCo unt.
  60            * /
  61           pu blic int g etPayloadC ount() {
  62                    retu rn payload Count;
  63           }
  64  
  65           /* *
  66            *  @param pa yloadCount
  67            *              The payl oadCount t o set.
  68            * /
  69           pu blic void  setPayload Count(int  payloadCou nt) {
  70                    this .payloadCo unt = payl oadCount;
  71           }
  72  
  73           /* *
  74            *  @return R eturns the  totalCoun t.
  75            * /
  76           pu blic int g etTotalCou nt() {
  77                    retu rn totalCo unt;
  78           }
  79  
  80           /* *
  81            *  @param to talCount
  82            *              The tota lCount to  set.
  83            * /
  84           pu blic void  setTotalCo unt(int to talCount)  {
  85                    this .totalCoun t = totalC ount;
  86           }
  87  
  88           /* *
  89            *  @return R eturns the  id.
  90            * /
  91           pu blic Seria lizable ge tId() {
  92                    retu rn id;
  93           }
  94  
  95           /* *
  96            *  @param id
  97            *              The id t o set.
  98            * /
  99           pu blic void  setId(Seri alizable i d) {
  100                    this .id = id;
  101           }
  102  
  103           /* *
  104            *  @return R eturns the  processNa me.
  105            * /
  106           pu blic Strin g getProce ssName() {
  107                    retu rn process Name;
  108           }
  109  
  110           /* *
  111            *  @param pr ocessName
  112            *              The proc essName to  set.
  113            * /
  114           pu blic void  setProcess Name(Strin g processN ame) {
  115                    this .processNa me = proce ssName;
  116           }
  117   }