53. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/10/2017 1:01:44 PM 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.

53.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\IV-ehmp_cif\ImagingCommon\main\test\java\gov\va\med\asynchproxy\router AsynchRouterClient.java Thu Jun 29 17:22:59 2017 UTC
2 C:\AraxisMergeCompare\Pri_re\IV-ehmp_cif\ImagingCommon\main\test\java\gov\va\med\asynchproxy\router AsynchRouterClient.java Thu Jul 6 15:02:34 2017 UTC

53.2 Comparison summary

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

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

53.4 Active regular expressions

No regular expressions were active.

53.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: Jun  9, 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.a synchproxy .router;
  25  
  26   import gov .va.med.as ynchproxy. AsynchProx yFactory;
  27   import gov .va.med.as ynchproxy. AsynchProx yListener;
  28   import gov .va.med.as ynchproxy. GenericAsy nchResult;
  29  
  30   /**
  31    * @author         
BECKEC
  32    *
  33    */
  34   public cla ss AsynchR outerClien t
  35   implements  AsynchPro xyListener
  36   {
  37           pr ivate int  resultCoun t = 0;
  38           pu blic Async hRouterCli ent()
  39           {
  40                    
  41           }
  42  
  43           pr ivate sync hronized v oid increm entResultC ount()
  44           {
  45                    ++re sultCount;
  46           }
  47           
  48           /* *
  49        * @se e biz.happ ycat.async hproxy.Asy nchProxyLi stener#res ult(biz.ha ppycat.asy nchproxy.G enericAsyn chResult)
  50        */
  51       public  void resu lt(Generic AsynchResu lt result)
  52       {
  53           in crementRes ultCount() ;
  54           Sy stem.out.p rintln("Go t result o f (wrapper ) type :"  + result.g etClass(). getSimpleN ame());
  55           if (result !=  null && r esult.getR esult() !=  null)
  56                    Syst em.out.pri ntln("Got  result of  type :" +  result.get Result().g etClass(). getSimpleN ame());
  57       }
  58  
  59           /* *
  60        * @re turn the r esultCount
  61        */
  62       public  int getRe sultCount( )
  63       {
  64           re turn resul tCount;
  65       }
  66   }