3207. EPMO Open Source Coordination Office Redaction File Detail Report

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

3207.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:49:57 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\resolver\xml DefaultResourceResolver.java Fri Apr 21 20:03:26 2017 UTC

3207.2 Comparison summary

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

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

3207.4 Active regular expressions

No regular expressions were active.

3207.5 Comparison detail

        1   package go v.va.nvap. common.res olver.xml;
        2  
        3   import gov .va.nvap.c ommon.reso lver.Resol ver;
        4  
        5   import org .springfra mework.bea ns.factory .annotatio n.Required ;
        6   import org .springfra mework.cor e.io.Resou rce;
        7   import org .w3c.dom.D ocument;
        8  
        9   /**
        10    * Resolve  a spring  resource.
        11    * 
        12    * @author  Asha Amri traj
        13    */
        14   public cla ss Default ResourceRe solver imp lements Re solver<Doc ument, Res ource> {
        15  
        16           /* *
        17            *  The sprin g resource .
        18            * /
        19           pr ivate Reso urce resou rce;
        20  
        21           /* *
        22            *  Resolve a  Spring re source.
        23            *  
        24            *  @param do cument
        25            *              unused f or now
        26            *  @return t he Spring  resource
        27            * /
        28           @O verride
        29           pu blic final  Resource  resolve(fi nal Docume nt documen t) {
        30                    retu rn this.re source;
        31           }
        32  
        33           /* *
        34            *  Set the s pring reso urce.
        35            *  
        36            *  @param th eResource
        37            *              the spri ng resourc e
        38            * /
        39           @R equired
        40           pu blic final  void setR esource(fi nal Resour ce theReso urce) {
        41                    this .resource  = theResou rce;
        42           }
        43  
        44   }