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

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

73.2 Comparison summary

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

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

73.4 Active regular expressions

No regular expressions were active.

73.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.busines s.ImagePro perty;
  14   import gov .va.med.im aging.view er.datasou rce.Viewer ImagingDat aSourceSpi ;
  15  
  16   /**
  17    * @author   DNS     tjahjb
  18    *
  19    */
  20   public cla ss GetImag ePropertie sCommandIm pl
  21   extends Ab stractView erImagingD ataSourceC ommandImpl <List<Imag eProperty> >
  22   {
  23           pr ivate stat ic final l ong serial VersionUID  = -573391 4547468862 029L;
  24  
  25           pr ivate fina l RoutingT oken globa lRoutingTo ken;
  26           pr ivate fina l String i mageIEN;
  27           pr ivate fina l String p rops;
  28           pr ivate fina l String f lags;
  29           
  30           /* *
  31            *  @param gl obalRoutin gToken
  32            *  @param us erId
  33            * /
  34           pu blic GetIm agePropert iesCommand Impl(
  35                             Routin gToken glo balRouting Token,
  36                             String  imageIEN,
  37                             String  props,
  38                             String  flags)
  39           {
  40                    supe r();
  41                    this .globalRou tingToken  = globalRo utingToken ;
  42                    this .imageIEN  = imageIEN ;
  43                    this .props = p rops;
  44                    this .flags = f lags;
  45           }
  46  
  47           /*  (non-Java doc)
  48            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get RoutingTok en()
  49            * /
  50           @O verride
  51           pu blic Routi ngToken ge tRoutingTo ken()
  52           {
  53                    retu rn globalR outingToke n;
  54           }
  55  
  56           /* *
  57  
  58           /*  (non-Java doc)
  59            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodN ame()
  60            * /
  61           @O verride
  62           pr otected St ring getSp iMethodNam e()
  63           {
  64                    retu rn "getIma geProperti es";
  65           }
  66  
  67           /*  (non-Java doc)
  68            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameterTy pes()
  69            * /
  70           @O verride
  71           pr otected Cl ass<?>[] g etSpiMetho dParameter Types()
  72           {
  73                    retu rn new Cla ss<?>[] {R outingToke n.class, S tring.clas s, String. class, Str ing.class} ;
  74           }
  75  
  76           /*  (non-Java doc)
  77            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameters( )
  78            * /
  79           @O verride
  80           pr otected Ob ject[] get SpiMethodP arameters( )
  81           {
  82                    retu rn new Obj ect[] {
  83                                      getRouti ngToken(),  
  84                                      this.get ImageIEN() ,
  85                                      this.get Props(),
  86                                      this.get Flags()
  87                    };
  88           }
  89  
  90           /*  (non-Java doc)
  91            *  @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)
  92            * /
  93           @O verride
  94           pr otected Li st<ImagePr operty> ge tCommandRe sult(Viewe rImagingDa taSourceSp i spi)
  95           th rows Conne ctionExcep tion, Meth odExceptio n
  96           {
  97                    retu rn spi.get ImagePrope rties(
  98                                      getRouti ngToken(),  
  99                                      this.get ImageIEN() ,
  100                                      this.get Props(),
  101                                      this.get Flags());
  102           }
  103  
  104           pu blic Strin g getImage IEN() {
  105                    retu rn imageIE N;
  106           }
  107  
  108           pu blic Strin g getProps () {
  109                    retu rn props;
  110           }
  111  
  112           pu blic Strin g getFlags () {
  113                    retu rn flags;
  114           }
  115  
  116  
  117   }