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

119.1 Files compared

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

119.2 Comparison summary

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

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

119.4 Active regular expressions

No regular expressions were active.

119.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   import gov .va.med.fw .model.bat chprocess. JobResult;
  10  
  11   /**
  12    * Initial  javadoc f or class J obResultDa ta. TODO -  Add conte nt here
  13    * 
  14    * Created  Oct 2, 20 06 3:26:06  PM
  15    * 
  16    * @author   DNS     DN S
  17    */
  18   public cla ss JobResu ltData imp lements Se rializable  {
  19           /* *
  20            *  serialVer sionUID lo ng
  21            * /
  22           pr ivate stat ic final l ong serial VersionUID  = 1840912 5436363016 06L;
  23           pr ivate JobR esult jobR esult;
  24           pr ivate Proc essStatist ics proces sStatistic s;
  25  
  26           pu blic JobRe sultData(J obResult j obResult,  ProcessSta tistics pr ocessStati stics) {
  27                    this .jobResult  = jobResu lt;
  28                    this .processSt atistics =  processSt atistics;
  29           }
  30  
  31           /* *
  32            *  @return R eturns the  jobResult .
  33            * /
  34           pu blic JobRe sult getJo bResult()  {
  35                    retu rn jobResu lt;
  36           }
  37  
  38           /* *
  39            *  @param jo bResult
  40            *              The jobR esult to s et.
  41            * /
  42           pu blic void  setJobResu lt(JobResu lt jobResu lt) {
  43                    this .jobResult  = jobResu lt;
  44           }
  45  
  46           /* *
  47            *  @return R eturns the  processSt atistics.
  48            * /
  49           pu blic Proce ssStatisti cs getProc essStatist ics() {
  50                    retu rn process Statistics ;
  51           }
  52  
  53           /* *
  54            *  @param pr ocessStati stics
  55            *              The proc essStatist ics to set .
  56            * /
  57           pu blic void  setProcess Statistics (ProcessSt atistics p rocessStat istics) {
  58                    this .processSt atistics =  processSt atistics;
  59           }
  60  
  61   }