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

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

3088.2 Comparison summary

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

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

3088.4 Active regular expressions

No regular expressions were active.

3088.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 Re strictions QueryRespo nseType co mplex 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="Restr ictionsQue ryResponse Type">
        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="O rganizatio n" type="{ urn:gov:va :nvap:priv acy}Organi zationType " 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  = { "organ ization" } )
        34   @XmlRootEl ement(name  = "Restri ctionsQuer yResponse" )
        35   public cla ss Restric tionsQuery Response {
        36  
        37           @X mlElement( name = "Or ganization ", require d = true)
        38           pr otected Li st<Organiz ationType>  organizat ion;
        39  
        40           /* *
        41            *  Gets the  value of t he organiz ation prop erty.
        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 organiz ation prop erty.
        47            *  <p>
        48            *  For examp le, to add  a new ite m, do as f ollows:
        49            *  
        50            *  <pre>
        51            *  getOrgani zation().a dd(newItem );
        52            *  </pre>
        53            *  <p>
        54            *  Objects o f the foll owing type (s) are al lowed in t he list
        55            *  {@link Or ganization Type }
        56            * /
        57           pu blic List< Organizati onType> ge tOrganizat ion() {
        58                    if ( this.organ ization ==  null) {
        59                             this.o rganizatio n = new Ar rayList<Or ganization Type>();
        60                    }
        61                    retu rn this.or ganization ;
        62           }
        63  
        64   }