3133. EPMO Open Source Coordination Office Redaction File Detail Report

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

3133.1 Files compared

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

3133.2 Comparison summary

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

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

3133.4 Active regular expressions

No regular expressions were active.

3133.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 1.06.18 at  07:32:30  PM PDT 
        6   //
        7  
        8   package go v.va.nvap. service.pd q;
        9  
        10   import jav a.util.Dat e;
        11  
        12   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
        13   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
        14   import jav ax.xml.bin d.annotati on.XmlElem ent;
        15   import jav ax.xml.bin d.annotati on.XmlSche maType;
        16   import jav ax.xml.bin d.annotati on.XmlType ;
        17   import jav ax.xml.bin d.annotati on.adapter s.XmlJavaT ypeAdapter ;
        18  
        19   /**
        20    * <p>
        21    * Java cl ass for pa tient-prof ile comple x type.
        22    * <p>
        23    * The fol lowing sch ema fragme nt specifi es the exp ected cont ent contai ned within
        24    * this cl ass.
        25    * 
        26    * <pre>
        27    * &lt;com plexType n ame="patie nt-profile ">
        28    *   &lt;c omplexCont ent>
        29    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        30    *       & lt;sequenc e>
        31    *          &lt;eleme nt name="i cn" type=" {http://ww w.w3.org/2 001/XMLSch ema}string "/>
        32    *          &lt;eleme nt name="l ast-name"  type="{htt p://www.w3 .org/2001/ XMLSchema} string"/>
        33    *          &lt;eleme nt name="f irst-name"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string"/>
        34    *          &lt;eleme nt name="m iddle-init ial" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g"/>
        35    *          &lt;eleme nt name="s sn" type=" {http://ww w.w3.org/2 001/XMLSch ema}string "/>
        36    *          &lt;eleme nt name="d ob" type=" {http://ww w.w3.org/2 001/XMLSch ema}dateTi me"/>
        37    *          &lt;eleme nt name="g ender" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing"/>
        38    *       & lt;/sequen ce>
        39    *     &lt ;/restrict ion>
        40    *   &lt;/ complexCon tent>
        41    * &lt;/co mplexType>
        42    * </pre>
        43    */
        44   @XmlAccess orType(Xml AccessType .FIELD)
        45   @XmlType(n ame = "pat ient-profi le", propO rder = { " icn", "las tName",
        46                    "fir stName", " middleInit ial", "ssn ", "dob",  "gender" } )
        47   public cla ss Patient Profile {
        48  
        49           @X mlElement( required =  true, typ e = String .class)
        50           @X mlJavaType Adapter(Da teTimeXmlA dapter.cla ss)
        51           @X mlSchemaTy pe(name =  "dateTime" )
        52           pr otected Da te dob;
        53           @X mlElement( name = "fi rst-name",  required  = true)
        54           pr otected St ring first Name;
        55           @X mlElement( required =  true)
        56           pr otected St ring gende r;
        57           @X mlElement( required =  true)
        58           pr otected St ring icn;
        59           @X mlElement( name = "la st-name",  required =  true)
        60           pr otected St ring lastN ame;
        61           @X mlElement( name = "mi ddle-initi al", requi red = true )
        62           pr otected St ring middl eInitial;
        63           @X mlElement( required =  true)
        64           pr otected St ring ssn;
        65  
        66           /* *
        67            *  Gets the  value of t he dob pro perty.
        68            *  
        69            *  @return p ossible ob ject is {@ link Strin g }
        70            * /
        71           pu blic Date  getDob() {
        72                    retu rn this.do b;
        73           }
        74  
        75           /* *
        76            *  Gets the  value of t he firstNa me propert y.
        77            *  
        78            *  @return p ossible ob ject is {@ link Strin g }
        79            * /
        80           pu blic Strin g getFirst Name() {
        81                    retu rn this.fi rstName;
        82           }
        83  
        84           /* *
        85            *  Gets the  value of t he gender  property.
        86            *  
        87            *  @return p ossible ob ject is {@ link Strin g }
        88            * /
        89           pu blic Strin g getGende r() {
        90                    retu rn this.ge nder;
        91           }
        92  
        93           /* *
        94            *  Gets the  value of t he icn pro perty.
        95            *  
        96            *  @return p ossible ob ject is {@ link Strin g }
        97            * /
        98           pu blic Strin g getIcn()  {
        99                    retu rn this.ic n;
        100           }
        101  
        102           /* *
        103            *  Gets the  value of t he lastNam e property .
        104            *  
        105            *  @return p ossible ob ject is {@ link Strin g }
        106            * /
        107           pu blic Strin g getLastN ame() {
        108                    retu rn this.la stName;
        109           }
        110  
        111           /* *
        112            *  Gets the  value of t he middleI nitial pro perty.
        113            *  
        114            *  @return p ossible ob ject is {@ link Strin g }
        115            * /
        116           pu blic Strin g getMiddl eInitial()  {
        117                    retu rn this.mi ddleInitia l;
        118           }
        119  
        120           /* *
        121            *  Gets the  value of t he ssn pro perty.
        122            *  
        123            *  @return p ossible ob ject is {@ link Strin g }
        124            * /
        125           pu blic Strin g getSsn()  {
        126                    retu rn this.ss n;
        127           }
        128  
        129           /* *
        130            *  Sets the  value of t he dob pro perty.
        131            *  
        132            *  @param va lue
        133            *              allowed  object is  {@link Str ing }
        134            * /
        135           pu blic void  setDob(fin al Date va lue) {
        136                    this .dob = val ue;
        137           }
        138  
        139           /* *
        140            *  Sets the  value of t he firstNa me propert y.
        141            *  
        142            *  @param va lue
        143            *              allowed  object is  {@link Str ing }
        144            * /
        145           pu blic void  setFirstNa me(final S tring valu e) {
        146                    this .firstName  = value;
        147           }
        148  
        149           /* *
        150            *  Sets the  value of t he gender  property.
        151            *  
        152            *  @param va lue
        153            *              allowed  object is  {@link Str ing }
        154            * /
        155           pu blic void  setGender( final Stri ng value)  {
        156                    this .gender =  value;
        157           }
        158  
        159           /* *
        160            *  Sets the  value of t he icn pro perty.
        161            *  
        162            *  @param va lue
        163            *              allowed  object is  {@link Str ing }
        164            * /
        165           pu blic void  setIcn(fin al String  value) {
        166                    this .icn = val ue;
        167           }
        168  
        169           /* *
        170            *  Sets the  value of t he lastNam e property .
        171            *  
        172            *  @param va lue
        173            *              allowed  object is  {@link Str ing }
        174            * /
        175           pu blic void  setLastNam e(final St ring value ) {
        176                    this .lastName  = value;
        177           }
        178  
        179           /* *
        180            *  Sets the  value of t he middleI nitial pro perty.
        181            *  
        182            *  @param va lue
        183            *              allowed  object is  {@link Str ing }
        184            * /
        185           pu blic void  setMiddleI nitial(fin al String  value) {
        186                    this .middleIni tial = val ue;
        187           }
        188  
        189           /* *
        190            *  Sets the  value of t he ssn pro perty.
        191            *  
        192            *  @param va lue
        193            *              allowed  object is  {@link Str ing }
        194            * /
        195           pu blic void  setSsn(fin al String  value) {
        196                    this .ssn = val ue;
        197           }
        198  
        199   }