4354. EPMO Open Source Coordination Office Redaction File Detail Report

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

4354.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:30 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-web\src\main\java\gov\va\nvap\web\util ValidatorMessage.java Fri Apr 21 20:03:30 2017 UTC

4354.2 Comparison summary

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

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

4354.4 Active regular expressions

No regular expressions were active.

4354.5 Comparison detail

        1   /*
        2    * To chan ge this te mplate, ch oose Tools  | Templat es
        3    * and ope n the temp late in th e editor.
        4    */
        5  
        6   package go v.va.nvap. web.util;
        7  
        8   /**
        9    * Class t o show val idation me ssages.
        10    * 
        11    * @author  David Vaz quez
        12    */
        13   public cla ss Validat orMessage  {
        14           pr ivate Stri ng message ;
        15           pr ivate Stri ng propert y;
        16           pr ivate Stri ng value;
        17  
        18           pu blic Strin g getMessa ge() {
        19                    retu rn this.me ssage;
        20           }
        21  
        22           pu blic Strin g getPrope rty() {
        23                    retu rn this.pr operty;
        24           }
        25  
        26           pu blic Strin g getValue () {
        27                    retu rn this.va lue;
        28           }
        29  
        30           pu blic void  setMessage (final Str ing messag e) {
        31                    this .message =  message;
        32           }
        33  
        34           pu blic void  setPropert y(final St ring prope rty) {
        35                    this .property  = property ;
        36           }
        37  
        38           pu blic void  setValue(f inal Strin g value) {
        39                    this .value = v alue;
        40           }
        41   }