3094. EPMO Open Source Coordination Office Redaction File Detail Report

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

3094.1 Files compared

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

3094.2 Comparison summary

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

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

3094.4 Active regular expressions

No regular expressions were active.

3094.5 Comparison detail

        1  
        2   package go v.va.nvap. privacy;
        3  
        4   import jav a.util.Arr ayList;
        5   import jav a.util.Lis t;
        6  
        7   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
        8   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
        9   import jav ax.xml.bin d.annotati on.XmlElem ent;
        10   import jav ax.xml.bin d.annotati on.XmlRoot Element;
        11   import jav ax.xml.bin d.annotati on.XmlType ;
        12  
        13   /**
        14    * <p>
        15    * Java cl ass for St atusQueryR esponseTyp e complex  type.
        16    * <p>
        17    * The fol lowing sch ema fragme nt specifi es the exp ected cont ent contai ned within
        18    * this cl ass.
        19    * 
        20    * <pre>
        21    * &lt;com plexType n ame="Statu sQueryResp onseType">
        22    *   &lt;c omplexCont ent>
        23    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        24    *       & lt;sequenc e>
        25    *          &lt;eleme nt name="A uthorizati on" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " maxOccur s="unbound ed"/>
        26    *       & lt;/sequen ce>
        27    *     &lt ;/restrict ion>
        28    *   &lt;/ complexCon tent>
        29    * &lt;/co mplexType>
        30    * </pre>
        31    */
        32   @XmlAccess orType(Xml AccessType .FIELD)
        33   @XmlType(n ame = "",  propOrder  = { "autho rization"  })
        34   @XmlRootEl ement(name  = "Status QueryRespo nse")
        35   public cla ss StatusQ ueryRespon se {
        36  
        37           @X mlElement( name = "Au thorizatio n", requir ed = true)
        38           pr otected Li st<String>  authoriza tion;
        39  
        40           /* *
        41            *  Gets the  value of t he authori zation pro perty.
        42            *  <p>
        43            *  This acce ssor metho d returns  a referenc e to the l ive list,  not a
        44            *  snapshot.  Therefore  any modif ication yo u make to  the return ed list wi ll
        45            *  be presen t inside t he JAXB ob ject. This  is why th ere is not  a
        46            *  <CODE>set </CODE> me thod for t he authori zation pro perty.
        47            *  <p>
        48            *  For examp le, to add  a new ite m, do as f ollows:
        49            *  
        50            *  <pre>
        51            *  getAuthor ization(). add(newIte m);
        52            *  </pre>
        53            *  <p>
        54            *  Objects o f the foll owing type (s) are al lowed in t he list
        55            *  {@link St ring }
        56            * /
        57           pu blic List< String> ge tAuthoriza tion() {
        58                    if ( this.autho rization = = null) {
        59                             this.a uthorizati on = new A rrayList<S tring>();
        60                    }
        61                    retu rn this.au thorizatio n;
        62           }
        63  
        64   }