7304. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/8/2018 10:14:53 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.

7304.1 Files compared

# Location File Last Modified
1 PRE_PPS-N_v3.0.1.zip\PS_PPS_srv\src\main\java\gov\va\med\pharmacy\peps\service\common\scheduler\jobs RxNormUpdateJob.java Fri Jan 12 15:44:26 2018 UTC
2 PRE_PPS-N_v3.0.1.zip\PS_PPS_srv\src\main\java\gov\va\med\pharmacy\peps\service\common\scheduler\jobs RxNormUpdateJob.java Wed Mar 7 18:51:54 2018 UTC

7304.2 Comparison summary

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

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

7304.4 Active regular expressions

No regular expressions were active.

7304.5 Comparison detail

  1   package go v.va.med.p harmacy.pe ps.service .common.sc heduler.jo bs;
  2  
  3   import gov .va.med.ph armacy.pep s.service. common.sch eduler.tas ks.RxNormU pdateTaskI mpl;
  4  
  5   import jav a.util.Dat e;
  6  
  7   import org .apache.lo gging.log4 j.Logger;
  8   import org .quartz.Di sallowConc urrentExec ution;
  9   import org .quartz.Jo b;
  10   import org .quartz.Jo bExecution Context;
  11   import org .quartz.Jo bExecution Exception;
  12   import org .springfra mework.sch eduling.qu artz.Quart zJobBean;
  13  
  14   /**
  15    * RxNormU pdate impl ementation  of the Qu artzJobBea n
  16    * 
  17    * @author   DNS DN S
  18    *
  19    */
  20   @DisallowC oncurrentE xecution
  21   public cla ss RxNormU pdateJob e xtends Qua rtzJobBean  implement s Job {
  22       
  23       privat e static f inal Logge r LOG = or g.apache.l ogging.log 4j.LogMana ger.getLog ger(RxNorm UpdateJob. class);
  24       
  25       privat e RxNormUp dateTaskIm pl rxNormU pdateTask;
  26       
  27       @Overr ide
  28       protec ted void e xecuteInte rnal(JobEx ecutionCon text conte xt) throws  JobExecut ionExcepti on {
  29           
  30           LO G.debug("\ n");
  31           LO G.info("-- ---------- ---------- ---- Execu ting RxNor mUpdate Jo b -------- ---------- ---------- --------") ;
  32           LO G.debug("  Time:  " +   new Date () + "                                                               ");
  33           LO G.debug("  Next fire  time: " +  context.ge tNextFireT ime() + "                                      ");
  34           
  35           rx NormUpdate Task.runRx NormUpdate Process();
  36       }
  37  
  38       /**
  39        * get RxNormUpda teTask
  40        * @re turn the r xNormUpdat eTask
  41        */
  42       public  RxNormUpd ateTaskImp l getRxNor mUpdateTas k() {
  43           re turn rxNor mUpdateTas k;
  44       }
  45  
  46  
  47       /**
  48        * set RxNormUpda teTask
  49        * @pa ram rxNorm UpdateTask  the rxNor mUpdateTas k to set
  50        */
  51       public  void setR xNormUpdat eTask(RxNo rmUpdateTa skImpl rxN ormUpdateT ask) {
  52           th is.rxNormU pdateTask  = rxNormUp dateTask;
  53       }
  54  
  55   }