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

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

75.2 Comparison summary

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

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

75.4 Active regular expressions

No regular expressions were active.

75.5 Comparison detail

  1   /**
  2    * Date Cr eated: May  1, 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.QAReview ReportResu lt;
  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 GetQARe viewReport sCommandIm pl
  20   extends Ab stractView erImagingD ataSourceC ommandImpl <List<QARe viewReport Result>>
  21   {
  22           pr ivate stat ic final l ong serial VersionUID  = -473391 4547364462 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 im ageUrns
  30            * /
  31           pu blic GetQA ReviewRepo rtsCommand Impl(
  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           /*  (non-Java doc)
  50            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodN ame()
  51            * /
  52           @O verride
  53           pr otected St ring getSp iMethodNam e()
  54           {
  55                    retu rn "getQAR eviewRepor ts";
  56           }
  57  
  58           /*  (non-Java doc)
  59            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameterTy pes()
  60            * /
  61           @O verride
  62           pr otected Cl ass<?>[] g etSpiMetho dParameter Types()
  63           {
  64                    retu rn new Cla ss<?>[] {R outingToke n.class, S tring.clas s};
  65           }
  66  
  67           /*  (non-Java doc)
  68            *  @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameters( )
  69            * /
  70           @O verride
  71           pr otected Ob ject[] get SpiMethodP arameters( )
  72           {
  73                    retu rn new Obj ect[] {
  74                                      getRouti ngToken(),  
  75                                      this.get UserId()
  76                    };
  77           }
  78  
  79           /*  (non-Java doc)
  80            *  @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)
  81            * /
  82           @O verride
  83           pr otected Li st<QARevie wReportRes ult> getCo mmandResul t(ViewerIm agingDataS ourceSpi s pi)
  84           th rows Conne ctionExcep tion, Meth odExceptio n
  85           {
  86                    retu rn spi.get QAReviewRe ports(
  87                                      getRouti ngToken(),  
  88                                      getUserI d());
  89           }
  90  
  91           pr ivate Stri ng getUser Id() {
  92                    retu rn userId;
  93           }
  94  
  95  
  96   }