70. EPMO Open Source Coordination Office Redaction File Detail Report

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

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

70.2 Comparison summary

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

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

70.4 Active regular expressions

No regular expressions were active.

70.5 Comparison detail

  1   /**
  2    * Date Cr eated: Apr  12, 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.CaptureU serResult;
  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 GetCapt ureUsersCo mmandImpl
  20   extends Ab stractView erImagingD ataSourceC ommandImpl <List<Capt ureUserRes ult>>
  21   {
  22           pr ivate stat ic final l ong serial VersionUID  = -473391 4547463362 029L;
  23  
  24           pr ivate fina l RoutingT oken globa lRoutingTo ken;
  25           pr ivate Stri ng appFlag ;
  26           pr ivate Stri ng fromDat e;
  27           pr ivate Stri ng through Date;
  28           
  29           /* *
  30            *  @param gl obalRoutin gToken
  31            *  @param im ageUrns
  32            * /
  33           pu blic GetCa ptureUsers CommandImp l(
  34                             Routin gToken glo balRouting Token,
  35                             String  appFlag,
  36                             String  fromDate,
  37                             String  throughDa te)
  38           {
  39                    supe r();
  40                    this .globalRou tingToken  = globalRo utingToken ;
  41                    this .appFlag =  appFlag;
  42                    this .fromDate  = fromDate ;
  43                    this .throughDa te = throu ghDate;
  44           }
  45  
  46           /*  (non-Java doc)
  47            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get RoutingTok en()
  48            * /
  49           @O verride
  50           pu blic Routi ngToken ge tRoutingTo ken()
  51           {
  52                    retu rn globalR outingToke n;
  53           }
  54  
  55           /* *
  56  
  57           /*  (non-Java doc)
  58            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodN ame()
  59            * /
  60           @O verride
  61           pr otected St ring getSp iMethodNam e()
  62           {
  63                    retu rn "getTre atingFacil ities";
  64           }
  65  
  66           /*  (non-Java doc)
  67            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameterTy pes()
  68            * /
  69           @O verride
  70           pr otected Cl ass<?>[] g etSpiMetho dParameter Types()
  71           {
  72                    retu rn new Cla ss<?>[] {R outingToke n.class, S tring.clas s, String. class};
  73           }
  74  
  75           /*  (non-Java doc)
  76            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameters( )
  77            * /
  78           @O verride
  79           pr otected Ob ject[] get SpiMethodP arameters( )
  80           {
  81                    retu rn new Obj ect[] {
  82                                      getRouti ngToken(),  
  83                                      this.get AppFlag(),
  84                                      this.get FromDate() ,
  85                                      this.get ThroughDat e()
  86                    };
  87           }
  88  
  89           /*  (non-Java doc)
  90            *  @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)
  91            * /
  92           @O verride
  93           pr otected Li st<Capture UserResult > getComma ndResult(V iewerImagi ngDataSour ceSpi spi)
  94           th rows Conne ctionExcep tion, Meth odExceptio n
  95           {
  96                    retu rn spi.get CaptureUse rs(
  97                                      getRouti ngToken(),  
  98                                      getAppFl ag(),
  99                                      getFromD ate(),
  100                                      getThrou ghDate());
  101           }
  102  
  103           pr ivate Stri ng getAppF lag() {
  104                    retu rn appFlag ;
  105           }
  106  
  107           pr ivate Stri ng getFrom Date() {
  108                    retu rn fromDat e;
  109           }
  110  
  111           pr ivate Stri ng getThro ughDate()  {
  112                    retu rn through Date;
  113           }
  114  
  115  
  116   }