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

116.1 Files compared

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

116.2 Comparison summary

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

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

116.4 Active regular expressions

No regular expressions were active.

116.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 org .apache.co mmons.lang .Validate;
  8  
  9   import gov .va.med.fw .persisten t.QueryInf o;
  10   import gov .va.med.fw .service.A bstractCom ponent;
  11  
  12   /**
  13    * Details  specific  informatio n regardin g a data q uery.
  14    * 
  15    * Created  Apr 24, 2 006 2:29:3 8 PM
  16    * 
  17    * @author   DNS     DN S
  18    */
  19   public cla ss DataQue ryDetail e xtends Abs tractCompo nent {
  20           pr ivate Quer yInfo quer y;
  21           pr ivate bool ean increm ental;
  22           pr ivate Acqu iredDataPr ocessor pr ocessor;
  23  
  24           /* *
  25            *  @return R eturns the  increment al.
  26            * /
  27           pu blic boole an isIncre mental() {
  28                    retu rn increme ntal;
  29           }
  30  
  31           /* *
  32            *  @param in cremental
  33            *              The incr emental to  set.
  34            * /
  35           pu blic void  setIncreme ntal(boole an increme ntal) {
  36                    this .increment al = incre mental;
  37           }
  38  
  39           /* *
  40            *  @return R eturns the  processor .
  41            * /
  42           pu blic Acqui redDataPro cessor get Processor( ) {
  43                    retu rn process or;
  44           }
  45  
  46           /* *
  47            *  @param pr ocessor
  48            *              The proc essor to s et.
  49            * /
  50           pu blic void  setProcess or(Acquire dDataProce ssor proce ssor) {
  51                    this .processor  = process or;
  52           }
  53  
  54           pu blic void  afterPrope rtiesSet()  {
  55                    Vali date.notNu ll(query,  "A query m ust be pre sent");
  56           }
  57  
  58           /* *
  59            *  @return R eturns the  query.
  60            * /
  61           pu blic Query Info getQu ery() {
  62                    if ( query == n ull)
  63                             query  = new Quer yInfo();
  64                    retu rn query;
  65           }
  66  
  67           /* *
  68            *  @param qu ery
  69            *              The quer y to set.
  70            * /
  71           pu blic void  setQuery(Q ueryInfo q uery) {
  72                    this .query = q uery;
  73           }
  74  
  75           /*  these eas e in Sprin g configur ation sett ing of pro perties */
  76           pu blic void  setQueryNa me(String  queryName)  {
  77                    getQ uery().set Query(quer yName);
  78           }
  79  
  80           pu blic void  setParamNa mes(String [] paramNa mes) {
  81                    getQ uery().set ParamNames (paramName s);
  82           }
  83  
  84           pu blic void  setParamVa lues(Objec t[] paramV alues) {
  85                    getQ uery().set ParamValue s(paramVal ues);
  86           }
  87   }