425. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:31 AM Eastern 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.

425.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\service\trigger TriggerIdentity.java Fri Dec 7 17:36:38 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\service\trigger TriggerIdentity.java Wed Dec 12 22:25:02 2018 UTC

425.2 Comparison summary

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

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

425.4 Active regular expressions

No regular expressions were active.

425.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   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   }