215. EPMO Open Source Coordination Office Redaction File Detail Report

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

215.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 BatchProcessService.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 BatchProcessService.java Wed Dec 12 22:26:41 2018 UTC

215.2 Comparison summary

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

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

215.4 Active regular expressions

No regular expressions were active.

215.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.util.Lis t;
  8   import jav a.util.Map ;
  9  
  10   import org .springfra mework.bat ch.core.Ba tchStatus;
  11  
  12   import gov .va.med.fw .model.Ent ityKey;
  13   import gov .va.med.fw .model.bat chprocess. JobConfig;
  14   import gov .va.med.fw .model.bat chprocess. JobResult;
  15   import gov .va.med.fw .model.bat chprocess. JobStatus;
  16   import gov .va.med.fw .schedulin g.Schedule dProcessIn vocationCo ntext;
  17   import gov .va.med.fw .schedulin g.Schedule dProcessTr iggerEvent ;
  18   import gov .va.med.fw .service.S erviceExce ption;
  19  
  20   /**
  21    * Initial  javadoc f or class B atchProces sService.  TODO - Add  content h ere
  22    * 
  23    * Created  Sep 29, 2 006 1:42:5 2 PM
  24    * 
  25    * DNS
  26    */
  27   public int erface Bat chProcessS ervice {
  28           
  29           pu blic void  saveJobRes ult(JobRes ult jr) th rows Servi ceExceptio n;
  30  
  31           pu blic JobRe sultData s aveAndOver layJobResu lt(long id , ProcessS tatistics  stats,
  32                             int to talDataCou nt) throws  ServiceEx ception;
  33  
  34           pu blic JobRe sult getJo bResult(fi nal long i d);
  35  
  36           pu blic void  saveJobCon fig(JobCon fig jc) th rows Servi ceExceptio n;
  37  
  38           pu blic JobCo nfig getJo bConfig(St ring jobNa me, String  jobGroup)  throws Se rviceExcep tion;
  39  
  40           pu blic List  getJobResu lts(JobSta tus status ) throws S erviceExce ption;
  41  
  42           pu blic List  getJobResu lts(BatchS tatus stat us) throws  ServiceEx ception;
  43  
  44           pu blic List  getFinishe dJobResult s(String j obName, St ring jobGr oup) throw s ServiceE xception;
  45  
  46           pu blic void  executeJob (Scheduled ProcessInv ocationCon text invoc ationConte xt)
  47                             throws  ServiceEx ception;
  48  
  49           pu blic void  executeJob (Scheduled ProcessTri ggerEvent  triggerEve nt) throws  ServiceEx ception;
  50  
  51           pu blic void  executeJob (Map jobDe tails) thr ows Servic eException ;
  52  
  53           pu blic void  cancelActi veJob(long  id) throw s ServiceE xception;
  54  
  55           pu blic void  errActiveJ ob(long id );
  56   }