3547. EPMO Open Source Coordination Office Redaction File Detail Report

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

3547.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:19 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-ext-svc-proxy\src\main\java\gov\va\med\esr\webservices\jaxws\schemas SpouseInfo.java Wed Jun 7 05:11:56 2017 UTC

3547.2 Comparison summary

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

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

3547.4 Active regular expressions

No regular expressions were active.

3547.5 Comparison detail

        1  
        2   package go v.va.med.e sr.webserv ices.jaxws .schemas;
        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.XmlSche maType;
        7   import jav ax.xml.bin d.annotati on.XmlType ;
        8   import jav ax.xml.dat atype.XMLG regorianCa lendar;
        9  
        10  
        11   /**
        12    * <p>Java  class for  spouseInf o complex  type.
        13    * 
        14    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        15    * 
        16    * <pre>
        17    * &lt;com plexType n ame="spous eInfo">
        18    *   &lt;c omplexCont ent>
        19    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        20    *       & lt;all>
        21    *          &lt;eleme nt name="d ob" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " minOccur s="0"/>
        22    *          &lt;eleme nt name="e ndDate" ty pe="{http: //www.w3.o rg/2001/XM LSchema}da teTime" mi nOccurs="0 "/>
        23    *          &lt;eleme nt name="f amilyName"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
        24    *          &lt;eleme nt name="g ender" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/>
        25    *          &lt;eleme nt name="g ivenName"  type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/>
        26    *          &lt;eleme nt name="m iddleName"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
        27    *          &lt;eleme nt name="r elationshi p" type="{ http://www .w3.org/20 01/XMLSche ma}string"  minOccurs ="0"/>
        28    *          &lt;eleme nt name="s sns" type= "{http://U RL.DNS}ssn Collection " minOccur s="0"/>
        29    *          &lt;eleme nt name="s tartDate"  type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/>
        30    *          &lt;eleme nt name="a ddress" ty pe="{http: //URL.DNS} addressInf o" minOccu rs="0"/>
        31    *          &lt;eleme nt name="e mployment"  type="{ht tp://URL.D NS}employm entInfo" m inOccurs=" 0"/>
        32    *          &lt;eleme nt name="m aidenName"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
        33    *       & lt;/all>
        34    *     &lt ;/restrict ion>
        35    *   &lt;/ complexCon tent>
        36    * &lt;/co mplexType>
        37    * </pre>
        38    * 
        39    * 
        40    */
        41   @XmlAccess orType(Xml AccessType .FIELD)
        42   @XmlType(n ame = "spo useInfo",  propOrder  = {
        43  
        44   })
        45   public cla ss SpouseI nfo {
        46  
        47       protec ted String  dob;
        48       @XmlSc hemaType(n ame = "dat eTime")
        49       protec ted XMLGre gorianCale ndar endDa te;
        50       protec ted String  familyNam e;
        51       protec ted String  gender;
        52       protec ted String  givenName ;
        53       protec ted String  middleNam e;
        54       protec ted String  relations hip;
        55       protec ted SsnCol lection ss ns;
        56       protec ted String  startDate ;
        57       protec ted Addres sInfo addr ess;
        58       protec ted Employ mentInfo e mployment;
        59       protec ted String  maidenNam e;
        60  
        61       /**
        62        * Get s the valu e of the d ob propert y.
        63        * 
        64        * @re turn
        65        *      possible  object is
        66        *      {@link St ring }
        67        *      
        68        */
        69       public  String ge tDob() {
        70           re turn dob;
        71       }
        72  
        73       /**
        74        * Set s the valu e of the d ob propert y.
        75        * 
        76        * @pa ram value
        77        *      allowed o bject is
        78        *      {@link St ring }
        79        *      
        80        */
        81       public  void setD ob(String  value) {
        82           th is.dob = v alue;
        83       }
        84  
        85       /**
        86        * Get s the valu e of the e ndDate pro perty.
        87        * 
        88        * @re turn
        89        *      possible  object is
        90        *      {@link XM LGregorian Calendar }
        91        *      
        92        */
        93       public  XMLGregor ianCalenda r getEndDa te() {
        94           re turn endDa te;
        95       }
        96  
        97       /**
        98        * Set s the valu e of the e ndDate pro perty.
        99        * 
        100        * @pa ram value
        101        *      allowed o bject is
        102        *      {@link XM LGregorian Calendar }
        103        *      
        104        */
        105       public  void setE ndDate(XML GregorianC alendar va lue) {
        106           th is.endDate  = value;
        107       }
        108  
        109       /**
        110        * Get s the valu e of the f amilyName  property.
        111        * 
        112        * @re turn
        113        *      possible  object is
        114        *      {@link St ring }
        115        *      
        116        */
        117       public  String ge tFamilyNam e() {
        118           re turn famil yName;
        119       }
        120  
        121       /**
        122        * Set s the valu e of the f amilyName  property.
        123        * 
        124        * @pa ram value
        125        *      allowed o bject is
        126        *      {@link St ring }
        127        *      
        128        */
        129       public  void setF amilyName( String val ue) {
        130           th is.familyN ame = valu e;
        131       }
        132  
        133       /**
        134        * Get s the valu e of the g ender prop erty.
        135        * 
        136        * @re turn
        137        *      possible  object is
        138        *      {@link St ring }
        139        *      
        140        */
        141       public  String ge tGender()  {
        142           re turn gende r;
        143       }
        144  
        145       /**
        146        * Set s the valu e of the g ender prop erty.
        147        * 
        148        * @pa ram value
        149        *      allowed o bject is
        150        *      {@link St ring }
        151        *      
        152        */
        153       public  void setG ender(Stri ng value)  {
        154           th is.gender  = value;
        155       }
        156  
        157       /**
        158        * Get s the valu e of the g ivenName p roperty.
        159        * 
        160        * @re turn
        161        *      possible  object is
        162        *      {@link St ring }
        163        *      
        164        */
        165       public  String ge tGivenName () {
        166           re turn given Name;
        167       }
        168  
        169       /**
        170        * Set s the valu e of the g ivenName p roperty.
        171        * 
        172        * @pa ram value
        173        *      allowed o bject is
        174        *      {@link St ring }
        175        *      
        176        */
        177       public  void setG ivenName(S tring valu e) {
        178           th is.givenNa me = value ;
        179       }
        180  
        181       /**
        182        * Get s the valu e of the m iddleName  property.
        183        * 
        184        * @re turn
        185        *      possible  object is
        186        *      {@link St ring }
        187        *      
        188        */
        189       public  String ge tMiddleNam e() {
        190           re turn middl eName;
        191       }
        192  
        193       /**
        194        * Set s the valu e of the m iddleName  property.
        195        * 
        196        * @pa ram value
        197        *      allowed o bject is
        198        *      {@link St ring }
        199        *      
        200        */
        201       public  void setM iddleName( String val ue) {
        202           th is.middleN ame = valu e;
        203       }
        204  
        205       /**
        206        * Get s the valu e of the r elationshi p property .
        207        * 
        208        * @re turn
        209        *      possible  object is
        210        *      {@link St ring }
        211        *      
        212        */
        213       public  String ge tRelations hip() {
        214           re turn relat ionship;
        215       }
        216  
        217       /**
        218        * Set s the valu e of the r elationshi p property .
        219        * 
        220        * @pa ram value
        221        *      allowed o bject is
        222        *      {@link St ring }
        223        *      
        224        */
        225       public  void setR elationshi p(String v alue) {
        226           th is.relatio nship = va lue;
        227       }
        228  
        229       /**
        230        * Get s the valu e of the s sns proper ty.
        231        * 
        232        * @re turn
        233        *      possible  object is
        234        *      {@link Ss nCollectio n }
        235        *      
        236        */
        237       public  SsnCollec tion getSs ns() {
        238           re turn ssns;
        239       }
        240  
        241       /**
        242        * Set s the valu e of the s sns proper ty.
        243        * 
        244        * @pa ram value
        245        *      allowed o bject is
        246        *      {@link Ss nCollectio n }
        247        *      
        248        */
        249       public  void setS sns(SsnCol lection va lue) {
        250           th is.ssns =  value;
        251       }
        252  
        253       /**
        254        * Get s the valu e of the s tartDate p roperty.
        255        * 
        256        * @re turn
        257        *      possible  object is
        258        *      {@link St ring }
        259        *      
        260        */
        261       public  String ge tStartDate () {
        262           re turn start Date;
        263       }
        264  
        265       /**
        266        * Set s the valu e of the s tartDate p roperty.
        267        * 
        268        * @pa ram value
        269        *      allowed o bject is
        270        *      {@link St ring }
        271        *      
        272        */
        273       public  void setS tartDate(S tring valu e) {
        274           th is.startDa te = value ;
        275       }
        276  
        277       /**
        278        * Get s the valu e of the a ddress pro perty.
        279        * 
        280        * @re turn
        281        *      possible  object is
        282        *      {@link Ad dressInfo  }
        283        *      
        284        */
        285       public  AddressIn fo getAddr ess() {
        286           re turn addre ss;
        287       }
        288  
        289       /**
        290        * Set s the valu e of the a ddress pro perty.
        291        * 
        292        * @pa ram value
        293        *      allowed o bject is
        294        *      {@link Ad dressInfo  }
        295        *      
        296        */
        297       public  void setA ddress(Add ressInfo v alue) {
        298           th is.address  = value;
        299       }
        300  
        301       /**
        302        * Get s the valu e of the e mployment  property.
        303        * 
        304        * @re turn
        305        *      possible  object is
        306        *      {@link Em ploymentIn fo }
        307        *      
        308        */
        309       public  Employmen tInfo getE mployment( ) {
        310           re turn emplo yment;
        311       }
        312  
        313       /**
        314        * Set s the valu e of the e mployment  property.
        315        * 
        316        * @pa ram value
        317        *      allowed o bject is
        318        *      {@link Em ploymentIn fo }
        319        *      
        320        */
        321       public  void setE mployment( Employment Info value ) {
        322           th is.employm ent = valu e;
        323       }
        324  
        325       /**
        326        * Get s the valu e of the m aidenName  property.
        327        * 
        328        * @re turn
        329        *      possible  object is
        330        *      {@link St ring }
        331        *      
        332        */
        333       public  String ge tMaidenNam e() {
        334           re turn maide nName;
        335       }
        336  
        337       /**
        338        * Set s the valu e of the m aidenName  property.
        339        * 
        340        * @pa ram value
        341        *      allowed o bject is
        342        *      {@link St ring }
        343        *      
        344        */
        345       public  void setM aidenName( String val ue) {
        346           th is.maidenN ame = valu e;
        347       }
        348  
        349   }