384. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/5/2017 12:06:49 PM Central Standard 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.

384.1 Files compared

# Location File Last Modified
1 IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\VistaDataSource\main\src\java\gov\va\med\imaging\vistadatasource VistaDelegateRedirector.java Mon Dec 4 21:34:34 2017 UTC
2 IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\VistaDataSource\main\src\java\gov\va\med\imaging\vistadatasource VistaDelegateRedirector.java Mon Dec 4 22:06:28 2017 UTC

384.2 Comparison summary

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

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

384.4 Active regular expressions

No regular expressions were active.

384.5 Comparison detail

  1   /**
  2    * Package : MAG - Vi stA Imagin g
  3    * WARNING : Per VHA  Directive  2004-038,  this routi ne should  not be mod ified.
  4    * Date Cr eated: Apr  29, 2008
  5    * Site Na me:  Washi ngton OI F ield Offic e, Silver  Spring, MD
  6    * @author         
BECKEC
  7    * @versio n 1.0
  8    *
  9    * ------- ---------- ---------- ---------- ---------- ---------- -------
  10    * Propert y of the U S Governme nt.
  11    * No perm ission to  copy or re distribute  this soft ware is gi ven.
  12    * Use of  unreleased  versions  of this so ftware req uires the  user
  13    * to exec ute a writ ten test a greement w ith the Vi stA Imagin g
  14    * Develop ment Offic e of the D epartment  of Veteran s Affairs,
  15    * telepho ne (301) 7 34-0100.
  16    * 
  17    * The Foo d and Drug  Administr ation clas sifies thi s software  as
  18    * a Class  II medica l device.   As such,  it may not  be change d
  19    * in any  way.  Modi fications  to this so ftware may  result in  an
  20    * adulter ated medic al device  under 21CF R820, the  use of whi ch
  21    * is cons idered to  be a viola tion of US  Federal S tatutes.
  22    * ------- ---------- ---------- ---------- ---------- ---------- -------
  23    */
  24   package go v.va.med.i maging.vis tadatasour ce;
  25  
  26   import jav a.lang.ref lect.Metho d;
  27  
  28   import org .apache.lo gging.log4 j.LogManag er;
  29   import org .apache.lo gging.log4 j.Logger;
  30  
  31   import gov .va.med.im aging.arti factsource .ResolvedA rtifactSou rce;
  32   import gov .va.med.im aging.core .interface s.exceptio ns.Connect ionExcepti on;
  33   import gov .va.med.im aging.core .interface s.exceptio ns.MethodE xception;
  34   import gov .va.med.im aging.data source.Rou tingOverri deSpi;
  35   import gov .va.med.im aging.data source.Sit eResolutio nDataSourc eSpi;
  36   import gov .va.med.im aging.data source.Ver sionableDa taSourceSp i;
  37   import gov .va.med.im aging.exch ange.busin ess.Resolv edSite;
  38  
  39   /**
  40    * @author         
BECKEC
  41    *
  42    */
  43   public cla ss VistaDe legateRedi rector 
  44   implements  RoutingOv errideSpi
  45   {
  46           //  This serv ice MUST i dentify it s protocol  as null a nd its
  47           //  protocol  version as  0.0 else  it will no t be found .
  48           pu blic stati c final St ring proto col = null ;
  49           pu blic stati c final fl oat protoc olVersion  = 0.0F;
  50           pr ivate Logg er logger  = LogManag er.getLogg er(this.ge tClass());
  51           
  52           /* *
  53            *  
  54            * /
  55           pu blic Vista DelegateRe director()
  56       {
  57                super();
  58       }
  59  
  60           /*  (non-Java doc)
  61            *  @see gov. va.med.ima ging.datas ource.Rout ingOverrid eSpi#resol ve(gov.va. med.imagin g.artifact source.Res olvedArtif actSource,  java.lang .Class, ja va.lang.re flect.Meth od, java.l ang.Object [], gov.va .med.imagi ng.datasou rce.SiteRe solutionDa taSourceSp i)
  62            * /
  63           @O verride
  64           pu blic Resol vedArtifac tSource re solve(Reso lvedArtifa ctSource n aturalDest ination,
  65                    Clas s<? extend s Versiona bleDataSou rceSpi> sp i, Method  method, Ob ject[] par ameters,
  66                    Site Resolution DataSource Spi siteRe solver) th rows Conne ctionExcep tion, Meth odExceptio n
  67           {
  68                    // d o nothing,  except lo g the call
  69                    // w e're just  testing th is now
  70                    logg er.debug(" VistaDeleg ateRedirec tor.resolv e(Resolved ArtifactSo urce,Class <? extends  Versionab leDataSour ceSpi>,Met hod,Object [],SiteRes olutionDat aSourceSpi ,Resolver)  called.") ;
  71                    retu rn natural Destinatio n;
  72           }
  73  
  74           /* *
  75            *  No config uration
  76            *  @see gov. va.med.ima ging.datas ource.Data SourceSpi# setConfigu ration(jav a.lang.Obj ect)
  77            * /
  78           @O verride
  79           pu blic void  setConfigu ration(Obj ect config uration){}
  80  
  81   }