3226. EPMO Open Source Coordination Office Redaction File Detail Report

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

3226.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:49:58 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-common\src\main\java\gov\va\nvap\common\transformer\xsl DefaultXSLTransformer.java Fri Apr 21 20:03:26 2017 UTC

3226.2 Comparison summary

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

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

3226.4 Active regular expressions

No regular expressions were active.

3226.5 Comparison detail

        1   package go v.va.nvap. common.tra nsformer.x sl;
        2  
        3   import jav a.util.Map ;
        4  
        5   import jav ax.xml.tra nsform.Res ult;
        6   import jav ax.xml.tra nsform.Sou rce;
        7   import jav ax.xml.tra nsform.Tra nsformerEx ception;
        8  
        9   import org .springfra mework.bea ns.factory .annotatio n.Required ;
        10   import org .springfra mework.cor e.io.Resou rce;
        11  
        12   /**
        13    * Transfo rm a XML b ased on th e XSL spec ified in t he resourc e.
        14    * 
        15    * @author  Asha Amri traj
        16    */
        17   public cla ss Default XSLTransfo rmer exten ds Abstrac tXSLTransf ormer {
        18  
        19           pr ivate Reso urce resou rce;
        20  
        21           @R equired
        22           pu blic final  void setR esource(fi nal Resour ce theReso urce) {
        23                    this .resource  = theResou rce;
        24           }
        25  
        26           @O verride
        27           pu blic final  Result tr ansform(fi nal Source  sourceMes sage)
        28                             throws  Transform erExceptio n {
        29                    retu rn super.t ransform(t his.resour ce, source Message, n ull);
        30           }
        31  
        32           @O verride
        33           pu blic final  Result tr ansform(fi nal Source  sourceMes sage,
        34                             final  Result tar getMessage ) throws T ransformer Exception  {
        35                    retu rn super.t ransform(t his.resour ce, source Message, t argetMessa ge,
        36                                      null);
        37           }
        38  
        39           @O verride
        40           pu blic final  Result tr ansform(fi nal Source  sourceMes sage,
        41                             final  Result tar getMessage ,
        42                             final  Map<String , Object>  dynamicPar ameters)
        43                             throws  Transform erExceptio n {
        44                    retu rn super.t ransform(t his.resour ce, source Message, t argetMessa ge,
        45                                      dynamicP arameters) ;
        46           }
        47  
        48   }