3090. EPMO Open Source Coordination Office Redaction File Detail Report

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

3090.1 Files compared

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

3090.2 Comparison summary

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

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

3090.4 Active regular expressions

No regular expressions were active.

3090.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  ServiceCo nsumer.
        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="Servic eConsumer" >
        22    *   &lt;r estriction  base="{ht tp://www.w 3.org/2001 /XMLSchema }string">
        23    *     &lt ;enumerati on value=" Veterans_P ortal"/>
        24    *     &lt ;enumerati on value=" Administra tor_Portal "/>
        25    *     &lt ;enumerati on value=" Exchange"/ >
        26    *     &lt ;enumerati on value=" Kiosk"/>
        27    *   &lt;/ restrictio n>
        28    * &lt;/si mpleType>
        29    * </pre>
        30    * 
        31    */
        32   @XmlEnum
        33   public enu m ServiceC onsumer {
        34  
        35       @XmlEn umValue("V eterans_Po rtal")
        36       VETERA NS_PORTAL( "Veterans_ Portal"),
        37       @XmlEn umValue("A dministrat or_Portal" )
        38       ADMINI STRATOR_PO RTAL("Admi nistrator_ Portal"),
        39       @XmlEn umValue("E xchange")
        40       EXCHAN GE("Exchan ge"),
        41       @XmlEn umValue("K iosk")
        42       KIOSK( "Kiosk");
        43       privat e final St ring value ;
        44  
        45       Servic eConsumer( String v)  {
        46           va lue = v;
        47       }
        48  
        49       public  String va lue() {
        50           re turn value ;
        51       }
        52  
        53       public  static Se rviceConsu mer fromVa lue(String  v) {
        54           fo r (Service Consumer c : ServiceC onsumer.va lues()) {
        55                if (c.va lue.equals (v)) {
        56                    retu rn c;
        57                }
        58           }
        59           th row new Il legalArgum entExcepti on(v);
        60       }
        61  
        62   }