3031. EPMO Open Source Coordination Office Redaction File Detail Report

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

3031.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:49:43 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-client\src\main\java\gov\va\nvap\privacy ConsentDirectiveConfigurationReferenceType.java Fri Apr 21 20:03:26 2017 UTC

3031.2 Comparison summary

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

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

3031.4 Active regular expressions

No regular expressions were active.

3031.5 Comparison detail

        1   package go v.va.nvap. privacy;
        2  
        3   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
        4   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
        5   import jav ax.xml.bin d.annotati on.XmlElem ent;
        6   import jav ax.xml.bin d.annotati on.XmlType ;
        7  
        8   @XmlAccess orType(Xml AccessType .FIELD)
        9   @XmlType(n ame = "Con sentDirect iveConfigu rationRefe renceType" , propOrde r = {
        10       "confi gId",
        11       "frequ ency",
        12       "windo w",
        13       "email Addresses"
        14   })
        15   public cla ss Consent DirectiveC onfigurati onReferenc eType {
        16  
        17       @XmlEl ement(requ ired = tru e)
        18       protec ted Long c onfigId;
        19       @XmlEl ement(requ ired = tru e)
        20       protec ted String  frequency ;
        21       @XmlEl ement
        22       protec ted Long w indow;
        23       @XmlEl ement
        24       protec ted String  emailAddr esses;
        25  
        26       public  Long getC onfigId()  {
        27           re turn confi gId;
        28       }
        29  
        30       public  void setC onfigId(Lo ng value)  {
        31           th is.configI d = value;
        32       }
        33  
        34       public  String ge tFrequency () {
        35           re turn frequ ency;
        36       }
        37  
        38       public  void setF requency(S tring valu e) {
        39           th is.frequen cy = value ;
        40       }
        41       
        42       public  Long getW indow() {
        43           re turn windo w;
        44       }
        45  
        46       public  void setW indow(Long  value) {
        47           th is.window  = value;
        48       }
        49       
        50       public  String ge tEmailAddr esses() {
        51           re turn email Addresses;
        52       }
        53  
        54       public  void setE mailAddres ses(String  value) {
        55           th is.emailAd dresses =  value;
        56       }
        57   }