3071. EPMO Open Source Coordination Office Redaction File Detail Report

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

3071.1 Files compared

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

3071.2 Comparison summary

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

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

3071.4 Active regular expressions

No regular expressions were active.

3071.5 Comparison detail

        1   package go v.va.nvap. privacy;
        2  
        3   import jav a.util.Dat e;
        4   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
        5   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
        6   import jav ax.xml.bin d.annotati on.XmlElem ent;
        7   import jav ax.xml.bin d.annotati on.XmlSche maType;
        8   import jav ax.xml.bin d.annotati on.XmlType ;
        9   import jav ax.xml.bin d.annotati on.adapter s.XmlJavaT ypeAdapter ;
        10  
        11  
        12   /**
        13    * <p>Java  class for  ConsentDi rectiveRef erenceType  complex t ype.
        14    * 
        15    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        16    * 
        17    * <pre>
        18    * &lt;com plexType n ame="Conse ntDirectiv eReference Type">
        19    *   &lt;c omplexCont ent>
        20    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        21    *       & lt;sequenc e>
        22    *          &lt;eleme nt name="t otal" type ="{http:// www.w3.org /2001/XMLS chema}long "/>
        23    *          &lt;eleme nt name="r eal" type= "{http://w ww.w3.org/ 2001/XMLSc hema}long" />
        24    *          &lt;eleme nt name="o ptinConsen tType" typ e="{urn:go v:va:nvap: privacy}Co nsentType" />
        25    *          &lt;eleme nt name="f acilityNam e" type="{ http://www .w3.org/20 01/XMLSche ma}string" />
        26    *       & lt;/sequen ce>
        27    *     &lt ;/restrict ion>
        28    *   &lt;/ complexCon tent>
        29    * &lt;/co mplexType>
        30    * </pre>
        31    * 
        32    * 
        33    */
        34   @XmlAccess orType(Xml AccessType .FIELD)
        35   @XmlType(n ame = "Fac ilityOptIn ConsentTyp e", propOr der = {
        36       "id",
        37       "total ",
        38       "real" ,
        39       "optin ConsentTyp e",
        40       "facil ityName"
        41   })
        42   public cla ss Facilit yOptInCons entType {
        43       @XmlEl ement(requ ired = tru e)
        44       protec ted Long i d;
        45       @XmlEl ement(requ ired = tru e)
        46       protec ted Long t otal;
        47        @XmlE lement(req uired = tr ue)
        48       protec ted Long r eal;
        49       @XmlEl ement(requ ired = tru e)
        50       protec ted Consen tType opti nConsentTy pe;
        51       @XmlEl ement(requ ired = tru e)
        52       protec ted String  facilityN ame;
        53       public  Long getI D(){
        54           re turn id;
        55       }
        56       public  Long getT otal() {
        57           re turn total ;
        58       }
        59  
        60       public  void setT otal(Long  total) {
        61           th is.total =  total;
        62       }
        63       public  Long getR eal() {
        64           re turn real;
        65       }
        66  
        67       public  void setR eal(Long r eal) {
        68           th is.real =  real;
        69       }
        70       public  String ge tFacilityN ame() {
        71           re turn facil ityName;
        72       }
        73  
        74       public  void setF acilityNam e(String f acilityNam e) {
        75           th is.facilit yName = fa cilityName ;
        76       }
        77  
        78  
        79       /**
        80        * Get s the valu e of the o ptinConsen tType prop erty.
        81        * 
        82        * @re turn
        83        *      possible  object is
        84        *      {@link Co nsentType  }
        85        *      
        86        */
        87       public  ConsentTy pe getOpti nConsentTy pe() {
        88           re turn optin ConsentTyp e;
        89       }
        90  
        91       /**
        92        * Set s the valu e of the o ptinConsen tType prop erty.
        93        * 
        94        * @pa ram value
        95        *      allowed o bject is
        96        *      {@link Co nsentType  }
        97        *      
        98        */
        99       public  void setO ptinConsen tType(Cons entType va lue) {
        100           th is.optinCo nsentType  = value;
        101       }
        102       
        103   }