269. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:15 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.

269.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\scheduling ScheduledProcessInvocationContext.java Wed May 29 15:26:24 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\scheduling ScheduledProcessInvocationContext.java Mon Jun 10 19:30:05 2019 UTC

269.2 Comparison summary

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

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

269.4 Active regular expressions

No regular expressions were active.

269.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2005 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.scheduli ng;
  6  
  7   import jav a.io.Seria lizable;
  8  
  9   import org .apache.co mmons.lang .builder.T oStringBui lder;
  10   import org .apache.co mmons.lang .builder.T oStringSty le;
  11   import org .quartz.Sc heduler;
  12  
  13   /**
  14    * Contain s context  informatio n about th e Schedule dProcess t hat is bei ng
  15    * invoked .
  16    * 
  17    * Created  Feb 23, 2 006 2:42:3 0 PM
  18    * 
  19    * @author   DNS     DN S
  20    */
  21   public cla ss Schedul edProcessI nvocationC ontext imp lements Se rializable  {
  22  
  23           /* *
  24            *  An instan ce of seri alVersionU ID
  25            * /
  26           pr ivate stat ic final l ong serial VersionUID  = -748646 8289259248 552L;
  27  
  28           pu blic stati c final St ring INVOC ATION_ARGU MENTS = "m ethodArgum ents";
  29           pu blic stati c final St ring EXECU TION_CONTE XT = "exec utionConte xt";
  30           st atic final  String DE FAULT_EXEC UTION_CONT EXT = "AUT O_PER_SCHE DULE";
  31  
  32           pr ivate Stri ng jobName ;
  33           pr ivate Stri ng jobGrou p = Schedu ler.DEFAUL T_GROUP;
  34           pr ivate Obje ct invocat ionArgumen ts;
  35           /* *
  36            *  Typically  this is i nformation  about the  user/serv ice that i nvoked thi s
  37            *  scheduled  process
  38            * /
  39           pr ivate Stri ng executi onContext  = DEFAULT_ EXECUTION_ CONTEXT;
  40  
  41           /*  these are  used to a ctually ex ecute job  */
  42           pr ivate Stri ng jobDeta ilBeanName ;
  43           pr ivate Stri ng service Name;
  44           pr ivate Stri ng methodN ame;
  45  
  46           pu blic Strin g toString () {
  47                    ToSt ringBuilde r builder  = new ToSt ringBuilde r(this, To StringStyl e.MULTI_LI NE_STYLE);
  48  
  49                    buil der.append ("jobName" , jobName) ;
  50                    buil der.append ("jobGroup ", jobGrou p);
  51                    buil der.append ("invocati onArgument s", invoca tionArgume nts);
  52                    buil der.append ("executio nContext",  execution Context);
  53                    buil der.append ("jobDetai lBeanName" , jobDetai lBeanName) ;
  54                    buil der.append ("serviceN ame", serv iceName);
  55                    buil der.append ("methodNa me", metho dName);
  56  
  57                    retu rn builder .toString( );
  58           }
  59  
  60           /* *
  61            *  @return R eturns the  invocatio nArguments .
  62            * /
  63           pu blic Objec t getInvoc ationArgum ents() {
  64                    retu rn invocat ionArgumen ts;
  65           }
  66  
  67           /* *
  68            *  @param in vocationAr guments
  69            *              The invo cationArgu ments to s et.
  70            * /
  71           pu blic void  setInvocat ionArgumen ts(Object  invocation Arguments)  {
  72                    this .invocatio nArguments  = invocat ionArgumen ts;
  73           }
  74  
  75           /* *
  76            *  @return R eturns the  jobGroup.
  77            * /
  78           pu blic Strin g getJobGr oup() {
  79                    retu rn jobGrou p;
  80           }
  81  
  82           /* *
  83            *  @param jo bGroup
  84            *              The jobG roup to se t.
  85            * /
  86           pu blic void  setJobGrou p(String j obGroup) {
  87                    this .jobGroup  = jobGroup ;
  88           }
  89  
  90           /* *
  91            *  @return R eturns the  jobName.
  92            * /
  93           pu blic Strin g getJobNa me() {
  94                    retu rn jobName ;
  95           }
  96  
  97           /* *
  98            *  @param jo bName
  99            *              The jobN ame to set .
  100            * /
  101           pu blic void  setJobName (String jo bName) {
  102                    this .jobName =  jobName;
  103           }
  104  
  105           /* *
  106            *  @return R eturns the  execution Context.
  107            * /
  108           pu blic Strin g getExecu tionContex t() {
  109                    retu rn executi onContext;
  110           }
  111  
  112           /* *
  113            *  @param ex ecutionCon text
  114            *              The exec utionConte xt to set.
  115            * /
  116           pu blic void  setExecuti onContext( String exe cutionCont ext) {
  117                    this .execution Context =  executionC ontext;
  118           }
  119  
  120           /* *
  121            *  @return R eturns the  jobDetail BeanName.
  122            * /
  123           pu blic Strin g getJobDe tailBeanNa me() {
  124                    retu rn jobDeta ilBeanName ;
  125           }
  126  
  127           /* *
  128            *  @param jo bDetailBea nName
  129            *              The jobD etailBeanN ame to set .
  130            * /
  131           pu blic void  setJobDeta ilBeanName (String jo bDetailNam e) {
  132                    this .jobDetail BeanName =  jobDetail Name;
  133           }
  134  
  135           /* *
  136            *  @return R eturns the  serviceNa me.
  137            * /
  138           pu blic Strin g getServi ceName() {
  139                    retu rn service Name;
  140           }
  141  
  142           /* *
  143            *  @param se rviceName
  144            *              The serv iceName to  set.
  145            * /
  146           pu blic void  setService Name(Strin g serviceN ame) {
  147                    this .serviceNa me = servi ceName;
  148           }
  149  
  150           /* *
  151            *  @return R eturns the  methodNam e.
  152            * /
  153           pu blic Strin g getMetho dName() {
  154                    retu rn methodN ame;
  155           }
  156  
  157           /* *
  158            *  @param me thodName
  159            *              The meth odName to  set.
  160            * /
  161           pu blic void  setMethodN ame(String  methodNam e) {
  162                    this .methodNam e = method Name;
  163           }
  164   }