3086. EPMO Open Source Coordination Office Redaction File Detail Report

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

3086.1 Files compared

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

3086.2 Comparison summary

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

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

3086.4 Active regular expressions

No regular expressions were active.

3086.5 Comparison detail

        1  
        2   package go v.va.nvap. privacy;
        3  
        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.XmlRoot Element;
        8   import jav ax.xml.bin d.annotati on.XmlType ;
        9  
        10   /**
        11    * <p>
        12    * Java cl ass for Re strictions QueryReque stType com plex type.
        13    * <p>
        14    * The fol lowing sch ema fragme nt specifi es the exp ected cont ent contai ned within
        15    * this cl ass.
        16    * 
        17    * <pre>
        18    * &lt;com plexType n ame="Restr ictionsQue ryRequestT ype">
        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="p atientId"  type="{htt p://www.w3 .org/2001/ XMLSchema} string"/>
        23    *       & lt;/sequen ce>
        24    *     &lt ;/restrict ion>
        25    *   &lt;/ complexCon tent>
        26    * &lt;/co mplexType>
        27    * </pre>
        28    */
        29   @XmlAccess orType(Xml AccessType .FIELD)
        30   @XmlType(n ame = "Res trictionsQ ueryReques tType", pr opOrder =  { "patient Id" })
        31   @XmlRootEl ement(name  = "Restri ctionsQuer yRequest")
        32   public cla ss Restric tionsQuery Request {
        33  
        34           @X mlElement( required =  true)
        35           pr otected St ring patie ntId;
        36  
        37           /* *
        38            *  Gets the  value of t he patient Id propert y.
        39            *  
        40            *  @return p ossible ob ject is {@ link Strin g }
        41            * /
        42           pu blic Strin g getPatie ntId() {
        43                    retu rn this.pa tientId;
        44           }
        45  
        46  
        47           /* *
        48            *  Sets the  value of t he patient Id propert y.
        49            *  
        50            *  @param va lue
        51            *              allowed  object is  {@link Str ing }
        52            * /
        53           pu blic void  setPatient Id(final S tring valu e) {
        54                    this .patientId  = value;
        55           }
        56   }