4234. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:51:24 PM 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.

4234.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:24 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-svc-notification\src\main\java\gov\va\nvap\notification\interfaces VapPublisher.java Fri Apr 21 20:03:30 2017 UTC

4234.2 Comparison summary

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

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

4234.4 Active regular expressions

No regular expressions were active.

4234.5 Comparison detail

        1   package go v.va.nvap. notificati on.interfa ces;
        2  
        3   import gov .va.nvap.n otificatio n.jmsutili ties.VapTr iggerEvent ;
        4  
        5   import jav a.io.Seria lizable;
        6   import jav a.util.Map ;
        7  
        8   /**
        9    * A VapPu blisher is  used for  publishing  VAP event s to a jav ax.jms.Des tination.
        10    *
        11    */
        12   public int erface Vap Publisher  {
        13  
        14           
        15           /* *
        16            *  Publishes  a Seriali zable Obje ct to a de stination.
        17            *  This meth od is inte nded for f or cases w here the c onsumer is  internal  to VAP.
        18            *  @param tr igger the  trigger th at motivat ed this me ssage.
        19            *  @param me ssage a Se rializable  message
        20            * /
        21           pu blic void  publishObj ect(VapTri ggerEvent  trigger, S erializabl e message)
        22  
        23           /* *
        24            *  Publishes  a String  (likely XM L) to a de stination.  
        25            *  This meth od is inte nded for f or cases w here the c onsumer is  external  to VAP.
        26            *  @param tr igger the  trigger th at motivat ed this me ssage.
        27            *  @param xm l an XML m essage
        28            * /
        29           pu blic void  publishXML (VapTrigge rEvent tri gger, Stri ng xml);
        30           
        31           /* *
        32            *  Publishes  a Seriali zable Obje ct to a de stination.
        33            *  This meth od is inte nded for f or cases w here the c onsumer is  internal  to VAP.
        34            *  @param tr igger the  trigger th at motivat ed this me ssage.
        35            *  @param me ssage a Se rializable  message
        36            *  @param pr ops a set  of propert ies that w ill be pla ced into t he message  as actual  message p roperties.
        37            *  For examp le, suppos e you wish  to give c onsumers o f this mes sage the a bility to  only recei ve the mes sage if th e veteran
        38            *  is over 4 0, you mig ht put in  a map that  has the k ey "age",  with a Sho rt that is  the vet's  age.
        39            * /
        40           pu blic void  publishObj ect(VapTri ggerEvent  trigger, S erializabl e message,  Map<Strin g,Object>  props);
        41  
        42           /* *
        43            *  Publishes  a Seriali zable Obje ct to a de stination.
        44            *  This meth od is inte nded for f or cases w here the c onsumer is  external  to VAP.
        45            *  @param tr igger the  trigger th at motivat ed this me ssage.
        46            *  @param me ssage an X ML message
        47            *  @param pr ops a set  of propert ies that w ill be pla ced into t he message  as actual  message p roperties.
        48            *  For examp le, suppos e you wish  to give c onsumers o f this mes sage the a bility to  only recei ve the mes sage if th e veteran
        49            *  is over 4 0, you mig ht put in  a map that  has the k ey "age",  with a Sho rt that is  the vet's  age.
        50            * /
        51           pu blic void  publishXML (VapTrigge rEvent tri gger, Stri ng xml, Ma p<String,O bject> pro ps);
        52           
        53   }