4267. EPMO Open Source Coordination Office Redaction File Detail Report

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

4267.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:25 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\consent\audit AuditedConsentSummary.java Fri Apr 21 20:03:30 2017 UTC

4267.2 Comparison summary

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

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

4267.4 Active regular expressions

No regular expressions were active.

4267.5 Comparison detail

        1   package go v.va.nvap. web.consen t.audit;
        2  
        3   /**
        4    * @author  Robert Sn elling
        5    */
        6   public fin al class A uditedCons entSummary  {
        7  
        8           pr ivate Stri ng consent Type;
        9           pr ivate Long  count;
        10           pr ivate Stri ng facilit y;
        11  
        12           pu blic Audit edConsentS ummary(fin al String  consentTyp e,
        13                             final  String fac ility, fin al Long co unt) {
        14                    this .setConsen tType(cons entType);
        15                    this .setFacili ty(facilit y);
        16                    this .setCount( count);
        17           }
        18  
        19           /* *
        20            *  @return t he actionT ype
        21            * /
        22           pu blic Strin g getConse ntType() {
        23                    retu rn this.co nsentType;
        24           }
        25  
        26           /* *
        27            *  @return t he count
        28            * /
        29           pu blic Long  getCount()  {
        30                    retu rn this.co unt;
        31           }
        32  
        33           /* *
        34            *  @return t he facilit y
        35            * /
        36           pu blic Strin g getFacil ity() {
        37                    retu rn this.fa cility;
        38           }
        39  
        40           /* *
        41            *  @param ac tionType
        42            *              the acti onType to  set
        43            * /
        44           pu blic void  setConsent Type(final  String co nsentType)  {
        45                    this .consentTy pe = conse ntType;
        46           }
        47  
        48           /* *
        49            *  @param co unt
        50            *              the coun t to set
        51            * /
        52           pu blic void  setCount(f inal Long  count) {
        53                    this .count = c ount;
        54           }
        55  
        56           /* *
        57            *  @param fa cility
        58            *              the faci lity to se t
        59            * /
        60           pu blic void  setFacilit y(final St ring facil ity) {
        61                    this .facility  = facility ;
        62           }
        63   }
        64