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

3061.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 ConsentType.java Fri Apr 21 20:03:26 2017 UTC

3061.2 Comparison summary

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

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

3061.4 Active regular expressions

No regular expressions were active.

3061.5 Comparison detail

        1   //
        2   // This fi le was gen erated by  the JavaTM  Architect ure for XM L Binding( JAXB) Refe rence Impl ementation , v2.1-b02 -fcs 
        3   // See <a  href="http ://java.su n.com/xml/ jaxb">http ://java.su n.com/xml/ jaxb</a> 
        4   // Any mod ifications  to this f ile will b e lost upo n recompil ation of t he source  schema. 
        5   // Generat ed on: 201 2.03.26 at  07:36:42  AM PDT 
        6   //
        7  
        8  
        9   package go v.va.nvap. privacy;
        10  
        11   import jav ax.xml.bin d.annotati on.XmlEnum ;
        12   import jav ax.xml.bin d.annotati on.XmlEnum Value;
        13  
        14  
        15   /**
        16    * <p>Java  class for  ConsentTy pe.
        17    * 
        18    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        19    * <p>
        20    * <pre>
        21    * &lt;sim pleType na me="Consen tType">
        22    *   &lt;r estriction  base="{ht tp://www.w 3.org/2001 /XMLSchema }string">
        23    *     &lt ;enumerati on value=" NwHIN Auth orization" />
        24    *     &lt ;enumerati on value=" NwHIN Revo cation"/>
        25    *     &lt ;enumerati on value=" NwHIN Orga nization R estriction  Authoriza tion"/>
        26    *     &lt ;enumerati on value=" NwHIN Orga nization R estriction  Revocatio n"/>
        27    *     &lt ;enumerati on value=" SSA Author ization"/>
        28    *     &lt ;enumerati on value=" SSA Revoca tion"/>
        29    *     &lt ;enumerati on value=" EAG Author ization"/>
        30    *     &lt ;enumerati on value=" EAG Revoca tion"/>
        31    *     &lt ;enumerati on value=" DAS Author ization"/>
        32    *     &lt ;enumerati on value=" DAS Revoca tion"/>
        33    *     &lt ;enumerati on value=" MHV Author ization"/>
        34    *     &lt ;enumerati on value=" MHV Revoca tion"/>
        35    *   &lt;/ restrictio n>
        36    * &lt;/si mpleType>
        37    * </pre>
        38    * 
        39    */
        40   @XmlEnum
        41   public enu m ConsentT ype {
        42  
        43       @XmlEn umValue("N wHIN Autho rization")
        44       NW_HIN _AUTHORIZA TION("NwHI N Authoriz ation"),
        45       @XmlEn umValue("N wHIN Revoc ation")
        46       NW_HIN _REVOCATIO N("NwHIN R evocation" ),
        47       @XmlEn umValue("N wHIN Organ ization Re striction  Authorizat ion")
        48       NW_HIN _ORGANIZAT ION_RESTRI CTION_AUTH ORIZATION( "NwHIN Org anization  Restrictio n Authoriz ation"),
        49       @XmlEn umValue("N wHIN Organ ization Re striction  Revocation ")
        50       NW_HIN _ORGANIZAT ION_RESTRI CTION_REVO CATION("Nw HIN Organi zation Res triction R evocation" ),
        51       @XmlEn umValue("S SA Authori zation")
        52       SSA_AU THORIZATIO N("SSA Aut horization "),
        53       @XmlEn umValue("S SA Revocat ion")
        54       SSA_RE VOCATION(" SSA Revoca tion"),
        55       @XmlEn umValue("E AG Authori zation")
        56       EAG_AU THORIZATIO N("EAG Aut horization "),
        57       @XmlEn umValue("E AG Revocat ion")
        58       EAG_RE VOCATION(" EAG Revoca tion"),
        59       @XmlEn umValue("D AS Authori zation")
        60       DAS_AU THORIZATIO N("DAS Aut horization "),
        61       @XmlEn umValue("D AS Revocat ion")
        62       DAS_RE VOCATION(" DAS Revoca tion"),
        63       @XmlEn umValue("M HV Authori zation")
        64       MHV_AU THORIZATIO N("MHV Aut horization "),
        65       @XmlEn umValue("M HV Revocat ion")
        66       MHV_RE VOCATION(" MHV Revoca tion");
        67       privat e final St ring value ;
        68  
        69       Consen tType(Stri ng v) {
        70           va lue = v;
        71       }
        72       
        73       public  String ge tValue() {
        74           re turn this. value;
        75       }
        76  
        77       public  String va lue() {
        78           re turn value ;
        79       }
        80  
        81       public  static Co nsentType  fromValue( String v)  {
        82           fo r (Consent Type c: Co nsentType. values())  {
        83                if (c.va lue.equals (v)) {
        84                    retu rn c;
        85                }
        86           }
        87           th row new Il legalArgum entExcepti on(v);
        88       }
        89  
        90   }