381. EPMO Open Source Coordination Office Redaction File Detail Report

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

381.1 Files compared

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

381.2 Comparison summary

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

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

381.4 Active regular expressions

No regular expressions were active.

381.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.scheduli ng;
  6  
  7   import gov .va.med.fw .service.s upport.Abs tractSpawn edThreadTa sk;
  8  
  9   /**
  10    * Decorat ion for a  ScheduledP rocess suc h that it  can be inv oked in a  separate
  11    * Thread  for concur rency need s.
  12    * 
  13    * Created  Apr 28, 2 006 12:28: 40 PM
  14    * 
  15    * DNS
  16    */
  17   public cla ss Spawned ScheduledP rocess ext ends Abstr actSpawned ThreadTask  {
  18           pr ivate Sche duledProce ss process ;
  19  
  20           pr ivate Sche duledProce ssInvocati onContext  context;
  21  
  22           /*
  23            *  (non-Java doc)
  24            *  
  25            *  @see gov. va.med.fw. service.su pport.Spaw nedThreadT ask#execut e()
  26            * /
  27           pu blic void  executeTas k() throws  Throwable  {
  28                    proc ess.invoke (context);
  29           }
  30  
  31           /* *
  32            *  @return R eturns the  process.
  33            * /
  34           pu blic Sched uledProces s getProce ss() {
  35                    retu rn process ;
  36           }
  37  
  38           /* *
  39            *  @param pr ocess
  40            *              The proc ess to set .
  41            * /
  42           pu blic void  setProcess (Scheduled Process pr ocess) {
  43                    this .process =  process;
  44           }
  45  
  46           /* *
  47            *  @return R eturns the  context.
  48            * /
  49           pu blic Sched uledProces sInvocatio nContext g etContext( ) {
  50                    retu rn context ;
  51           }
  52  
  53           /* *
  54            *  @param co ntext
  55            *              The cont ext to set .
  56            * /
  57           pu blic void  setContext (Scheduled ProcessInv ocationCon text conte xt) {
  58                    this .context =  context;
  59           }
  60   }