77. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/25/2019 8:58:05 AM Central 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.

77.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\IMAG_Source\VISA\Java\ViewerImagingRouter\main\src\java\gov\va\med\imaging\viewer\router\commands PostSaveImageFilterCommandImpl.java Mon Mar 18 20:39:15 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\IMAG_Source\VISA\Java\ViewerImagingRouter\main\src\java\gov\va\med\imaging\viewer\router\commands PostSaveImageFilterCommandImpl.java Tue Mar 19 12:04:10 2019 UTC

77.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 196
Changed 2 4
Inserted 0 0
Removed 0 0

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

77.4 Active regular expressions

No regular expressions were active.

77.5 Comparison detail

  1   /**
  2    * Date Cr eated: Jun  1, 2017
  3    * Develop er:  DNS     tjahjb
  4    */
  5   package go v.va.med.i maging.vie wer.router .commands;
  6  
  7   import jav a.util.Lis t;
  8  
  9   import gov .va.med.Ro utingToken ;
  10   import gov .va.med.im aging.core .interface s.exceptio ns.Connect ionExcepti on;
  11   import gov .va.med.im aging.core .interface s.exceptio ns.MethodE xception;
  12   import gov .va.med.im aging.view er.busines s.ImageFil terFieldVa lue;
  13   import gov .va.med.im aging.view er.datasou rce.Viewer ImagingDat aSourceSpi ;
  14  
  15   /**
  16    * @author   DNS     tjahjb
  17    *
  18    */
  19   public cla ss PostSav eImageFilt erCommandI mpl
  20   extends Ab stractView erImagingD ataSourceC ommandImpl <String>
  21   {
  22           pr ivate stat ic final l ong serial VersionUID  = -770391 4547363362 027L;
  23  
  24           pr ivate fina l RoutingT oken globa lRoutingTo ken;
  25           pr ivate fina l List<Ima geFilterFi eldValue>  imageFilte rFieldValu es;
  26  
  27           /* *
  28            *  @param gl obalRoutin gToken
  29            *  @param im ageFilterV alues
  30            * /
  31           pu blic PostS aveImageFi lterComman dImpl(
  32                             Routin gToken glo balRouting Token,
  33                             List<I mageFilter FieldValue > imageFil terFieldVa lues) 
  34           {
  35                    supe r();
  36                    this .globalRou tingToken  = globalRo utingToken ;
  37                    this .imageFilt erFieldVal ues = imag eFilterFie ldValues;
  38           }
  39  
  40           /*  (non-Java doc)
  41            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get RoutingTok en()
  42            * /
  43           @O verride
  44           pu blic Routi ngToken ge tRoutingTo ken()
  45           {
  46                    retu rn globalR outingToke n;
  47           }
  48  
  49           /* *
  50            *  @return t he imageFi lterValues
  51            * /
  52           pu blic List< ImageFilte rFieldValu e> getImag eFilterFie ldValues()
  53           {
  54                    retu rn imageFi lterFieldV alues;
  55           }
  56  
  57           /* *
  58  
  59           /*  (non-Java doc)
  60            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodN ame()
  61            * /
  62           @O verride
  63           pr otected St ring getSp iMethodNam e()
  64           {
  65                    retu rn "saveIm ageFilter" ;
  66           }
  67  
  68           /*  (non-Java doc)
  69            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameterTy pes()
  70            * /
  71           @O verride
  72           pr otected Cl ass<?>[] g etSpiMetho dParameter Types()
  73           {
  74                    retu rn new Cla ss<?>[] {R outingToke n.class, L ist.class} ;
  75           }
  76  
  77           /*  (non-Java doc)
  78            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameters( )
  79            * /
  80           @O verride
  81           pr otected Ob ject[] get SpiMethodP arameters( )
  82           {
  83                    retu rn new Obj ect[] {
  84                                      getRouti ngToken(),  
  85                                      this.get ImageFilte rFieldValu es()};
  86           }
  87  
  88           /*  (non-Java doc)
  89            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get CommandRes ult(gov.va .med.imagi ng.datasou rce.Versio nableDataS ourceSpi)
  90            * /
  91           @O verride
  92           pr otected St ring getCo mmandResul t(ViewerIm agingDataS ourceSpi s pi)
  93           th rows Conne ctionExcep tion, Meth odExceptio n
  94           {
  95                    retu rn spi.sav eImageFilt er(
  96                                      getRouti ngToken(),  
  97                                      this.get ImageFilte rFieldValu es());
  98           }
  99  
  100   }