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

72.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 GetImageFiltersCommandImpl.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 GetImageFiltersCommandImpl.java Tue Mar 19 12:04:10 2019 UTC

72.2 Comparison summary

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

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

72.4 Active regular expressions

No regular expressions were active.

72.5 Comparison detail

  1   /**
  2    * Date Cr eated: Apr  23, 2018
  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 terResult;
  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 GetImag eFiltersCo mmandImpl
  20   extends Ab stractView erImagingD ataSourceC ommandImpl <List<Imag eFilterRes ult>>
  21   {
  22           pr ivate stat ic final l ong serial VersionUID  = -573391 4547463362 029L;
  23  
  24           pr ivate fina l RoutingT oken globa lRoutingTo ken;
  25           pr ivate Stri ng userId;
  26           
  27           /* *
  28            *  @param gl obalRoutin gToken
  29            *  @param us erId
  30            * /
  31           pu blic GetIm ageFilters CommandImp l(
  32                             Routin gToken glo balRouting Token,
  33                             String  userId)
  34           {
  35                    supe r();
  36                    this .globalRou tingToken  = globalRo utingToken ;
  37                    this .userId =  userId;
  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  
  51           /*  (non-Java doc)
  52            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodN ame()
  53            * /
  54           @O verride
  55           pr otected St ring getSp iMethodNam e()
  56           {
  57                    retu rn "getIma geFilters" ;
  58           }
  59  
  60           /*  (non-Java doc)
  61            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameterTy pes()
  62            * /
  63           @O verride
  64           pr otected Cl ass<?>[] g etSpiMetho dParameter Types()
  65           {
  66                    retu rn new Cla ss<?>[] {R outingToke n.class, S tring.clas s};
  67           }
  68  
  69           /*  (non-Java doc)
  70            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameters( )
  71            * /
  72           @O verride
  73           pr otected Ob ject[] get SpiMethodP arameters( )
  74           {
  75                    retu rn new Obj ect[] {
  76                                      getRouti ngToken(),  
  77                                      this.get UserId()
  78                    };
  79           }
  80  
  81           /*  (non-Java doc)
  82            *  @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)
  83            * /
  84           @O verride
  85           pr otected Li st<ImageFi lterResult > getComma ndResult(V iewerImagi ngDataSour ceSpi spi)
  86           th rows Conne ctionExcep tion, Meth odExceptio n
  87           {
  88                    retu rn spi.get ImageFilte rs(
  89                                      getRouti ngToken(),  
  90                                      getUserI d());
  91           }
  92  
  93           pr ivate Stri ng getUser Id() {
  94                    retu rn userId;
  95           }
  96  
  97  
  98   }