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

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

3077.2 Comparison summary

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

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

3077.4 Active regular expressions

No regular expressions were active.

3077.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 Or ganization TrustedSou rceRequest Type compl ex 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="Organ izationTru stedSource RequestTyp e">
        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="o rganizatio nId" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g"/>
        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 = "Org anizationT rustedSour ceRequestT ype", prop Order = {  "organizat ionId" })
        31   @XmlRootEl ement(name  = "Organi zationTrus tedSourceR equest", n amespace =  "http://g ov.va.nvap .service.p rivacy/")
        32   public cla ss Organiz ationTrust edSourceRe quest {
        33  
        34           @X mlElement( name = "or ganization Id", requi red = true )
        35           pr otected St ring organ izationId;
        36       
        37       /**
        38            *  Gets the  value of t he organiz ationId pr operty.
        39            *  
        40            *  @return p ossible ob ject is {@ link Strin g }
        41            * /
        42           pu blic Strin g getOrgan izationId( ) {
        43                    retu rn this.or ganization Id;
        44           }
        45       
        46       /**
        47            *  Sets the  value of t he organiz ationId pr operty.
        48            *  
        49            *  @param va lue
        50            *              allowed  object is  {@link Str ing }
        51            * /
        52           pu blic void  setOrganiz ationId(fi nal String  value) {
        53                    this .organizat ionId = va lue;
        54           }
        55   }