317. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:16 AM Eastern 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.

317.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\service\trigger TriggerIdentity.java Wed May 29 15:26:36 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\service\trigger TriggerIdentity.java Mon Jun 10 19:30:05 2019 UTC

317.2 Comparison summary

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

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

317.4 Active regular expressions

No regular expressions were active.

317.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2005 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.service. trigger;
  6  
  7   import org .apache.co mmons.lang .enums.Enu m;
  8  
  9   /**
  10    * Initial  javadoc f or class T riggerIden tity. TODO  - Add con tent here
  11    * 
  12    * Created  Aug 22, 2 005 11:51: 45 PM
  13    * 
  14    * @author   DNS     DN S
  15    */
  16   public int erface Tri ggerIdenti ty {
  17           pu blic stati c final St ring NAME_ DELIMITER  = "-";
  18  
  19           pu blic class  TargetTyp e extends  Enum {
  20  
  21                    /**
  22                     * A n instance  of serial VersionUID
  23                     */
  24                    priv ate static  final lon g serialVe rsionUID =  334532768 5426893529 L;
  25  
  26                    prot ected Targ etType(Str ing name)  {
  27                             super( name);
  28                    }
  29           }
  30  
  31           pu blic class  Destinati onType ext ends Enum  {
  32                    /**
  33                     * A n instance  of serial VersionUID
  34                     */
  35                    priv ate static  final lon g serialVe rsionUID =  392355388 1353442950 L;
  36  
  37                    publ ic static  final Dest inationTyp e DEFAULT  = new Dest inationTyp e("DEFAULT ");
  38                    publ ic static  final Dest inationTyp e BATCH_PR OCESS = ne w Destinat ionType("B ATCH_PROCE SS");
  39                    publ ic static  final Dest inationTyp e REPORT =  new Desti nationType ("REPORT") ;
  40                    publ ic static  final Dest inationTyp e LOG4J =  new Destin ationType( "LOG4J");
  41  
  42                    prot ected Dest inationTyp e(String n ame) {
  43                             super( name);
  44                    }
  45           }
  46  
  47           pu blic class  DispatchT ype extend s Enum {
  48  
  49                    /**
  50                     * A n instance  of serial VersionUID
  51                     */
  52                    priv ate static  final lon g serialVe rsionUID =  -66035405 7858110176 9L;
  53  
  54                    prot ected Disp atchType(S tring name ) {
  55                             super( name);
  56                    }
  57           }
  58  
  59           pu blic class  EntityTyp e extends  Enum {
  60  
  61                    /**
  62                     * A n instance  of serial VersionUID
  63                     */
  64                    priv ate static  final lon g serialVe rsionUID =  -11996409 1677302284 9L;
  65  
  66                    prot ected Enti tyType(Str ing name)  {
  67                             super( name);
  68                    }
  69           }
  70  
  71           pu blic Strin g getName( );
  72  
  73           pu blic Targe tType getT argetType( );
  74  
  75           pu blic Desti nationType  getDestin ationType( );
  76  
  77           pu blic Dispa tchType ge tDispatchT ype();
  78  
  79           pu blic Entit yType getE ntityType( );
  80  
  81           pu blic boole an isUsedF orConsumer Routing();
  82   }