5. EPMO Open Source Coordination Office Redaction File Detail Report

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

5.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\IMAG_Source\VISA\Java\CoreRouter\main\src\java\gov\va\med\imaging\core\router\worklist InternalWorkListRouter.java Mon Mar 18 20:39:13 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\IMAG_Source\VISA\Java\CoreRouter\main\src\java\gov\va\med\imaging\core\router\worklist InternalWorkListRouter.java Tue Mar 19 12:03:24 2019 UTC

5.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 150
Changed 1 2
Inserted 0 0
Removed 0 0

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

5.4 Active regular expressions

No regular expressions were active.

5.5 Comparison detail

  1   package go v.va.med.i maging.cor e.router.w orklist;
  2  
  3   import gov .va.med.Ro utingToken ;
  4   import gov .va.med.im aging.core .annotatio ns.routerf acade.Faca deRouterIn terface;
  5   import gov .va.med.im aging.core .annotatio ns.routerf acade.Faca deRouterIn terfaceCom mandTester ;
  6   import gov .va.med.im aging.core .annotatio ns.routerf acade.Faca deRouterMe thod;
  7   import gov .va.med.im aging.core .interface s.FacadeRo uter;
  8   import gov .va.med.im aging.core .interface s.exceptio ns.Connect ionExcepti on;
  9   import gov .va.med.im aging.core .interface s.exceptio ns.MethodE xception;
  10   import gov .va.med.im aging.exch ange.busin ess.WorkIt em;
  11   import gov .va.med.im aging.exch ange.busin ess.WorkIt emFilter;
  12   import gov .va.med.im aging.exch ange.busin ess.WorkIt emTag;
  13  
  14   import jav a.util.Lis t;
  15  
  16   /**
  17    * 
  18    * @author   DNS     louthj
  19    *
  20    */
  21   @FacadeRou terInterfa ce
  22   @FacadeRou terInterfa ceCommandT ester
  23   public int erface Int ernalWorkL istRouter 
  24   extends Fa cadeRouter
  25   {
  26           
  27           @F acadeRoute rMethod(as ynchronous =false, is ChildComma nd=true)
  28           pu blic abstr act WorkIt em createW orkItem(Wo rkItem wor kItem)
  29           th rows Metho dException , Connecti onExceptio n;
  30           
  31           @F acadeRoute rMethod(as ynchronous =false, is ChildComma nd=true)
  32           pu blic abstr act List<W orkItem> g etWorkItem List(WorkI temFilter  filter)
  33           th rows Metho dException , Connecti onExceptio n;
  34           
  35           @F acadeRoute rMethod(as ynchronous =false, is ChildComma nd=true)
  36           pu blic abstr act Boolea n updateWo rkItem(
  37                             int wo rkItemId, 
  38                             String  expectedS tatus, 
  39                             String  newStatus
  40                             String  newMessag e, 
  41                             String  updatingU ser,
  42                             String  updatingA pplication )
  43           th rows Metho dException , Connecti onExceptio n;
  44           
  45           @F acadeRoute rMethod(as ynchronous =false, is ChildComma nd=true)
  46           pu blic abstr act Boolea n postWork ItemTags(
  47                             int wo rkItemId, 
  48                             List<S tring> all owedStatus es, 
  49                             List<W orkItemTag > newTags,  
  50                             String  updatingU ser,
  51                             String  updatingA pplication
  52           th rows Metho dException , Connecti onExceptio n;
  53           
  54           @F acadeRoute rMethod(as ynchronous =false, is ChildComma nd=true)
  55           pu blic abstr act Boolea n deleteWo rkItem(int  id)
  56           th rows Metho dException , Connecti onExceptio n;
  57           
  58           @F acadeRoute rMethod(as ynchronous =false, is ChildComma nd=true)
  59           pu blic abstr act WorkIt em getAndT ransitionW orkItem(
  60                             int id
  61                             String  expectedS tatus, 
  62                             String  newStatus
  63                             String  updatingU ser,
  64                             String  updatingA pplication )
  65           th rows Metho dException , Connecti onExceptio n;
  66  
  67           @F acadeRoute rMethod(as ynchronous =false, is ChildComma nd=true)
  68           pu blic abstr act WorkIt em getAndT ransitionN extWorkIte m(
  69                             String  type, 
  70                             String  expectedS tatus, 
  71                             String  newStatus
  72                             String  updatingU ser,
  73                             String  updatingA pplication )
  74           th rows Metho dException , Connecti onExceptio n;
  75           
  76   }