573. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/5/2017 4:25:31 PM Central 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.

573.1 Files compared

# Location File Last Modified
1 C:\working_scrub\Unredacted\VAP Code Base\VAP_Bld2_Source_Code_CIF_2017-02-14\nvap-ext-svc-proxy\src\main\java\gov\va\med\esr\webservices\jaxws\schemas DependentInfo.java Wed Feb 1 18:37:28 2017 UTC
2 eHX-CIF.zip\eHX-CIF\VAP Code Base\VAP_Bld2_Source_Code_CIF_2017-02-14\nvap-ext-svc-proxy\src\main\java\gov\va\med\esr\webservices\jaxws\schemas DependentInfo.java Mon Apr 3 14:02:49 2017 UTC

573.2 Comparison summary

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

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

573.4 Active regular expressions

No regular expressions were active.

573.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  dependent Info compl ex 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="depen dentInfo">
  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;elemen t name="ss ns" type=" {http://ja xws.webser vices.esr. URL         /schemas}s snCollecti on" minOcc urs="0"/>
  29    *          &lt;eleme nt name="s tartDate"  type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/>
  30    *       & lt;/all>
  31    *     &lt ;/restrict ion>
  32    *   &lt;/ complexCon tent>
  33    * &lt;/co mplexType>
  34    * </pre>
  35    * 
  36    * 
  37    */
  38   @XmlAccess orType(Xml AccessType .FIELD)
  39   @XmlType(n ame = "dep endentInfo ", propOrd er = {
  40  
  41   })
  42   public cla ss Depende ntInfo {
  43  
  44       protec ted String  dob;
  45       @XmlSc hemaType(n ame = "dat eTime")
  46       protec ted XMLGre gorianCale ndar endDa te;
  47       protec ted String  familyNam e;
  48       protec ted String  gender;
  49       protec ted String  givenName ;
  50       protec ted String  middleNam e;
  51       protec ted String  relations hip;
  52       protec ted SsnCol lection ss ns;
  53       protec ted String  startDate ;
  54  
  55       /**
  56        * Get s the valu e of the d ob propert y.
  57        * 
  58        * @re turn
  59        *      possible  object is
  60        *      {@link St ring }
  61        *      
  62        */
  63       public  String ge tDob() {
  64           re turn dob;
  65       }
  66  
  67       /**
  68        * Set s the valu e of the d ob propert y.
  69        * 
  70        * @pa ram value
  71        *      allowed o bject is
  72        *      {@link St ring }
  73        *      
  74        */
  75       public  void setD ob(String  value) {
  76           th is.dob = v alue;
  77       }
  78  
  79       /**
  80        * Get s the valu e of the e ndDate pro perty.
  81        * 
  82        * @re turn
  83        *      possible  object is
  84        *      {@link XM LGregorian Calendar }
  85        *      
  86        */
  87       public  XMLGregor ianCalenda r getEndDa te() {
  88           re turn endDa te;
  89       }
  90  
  91       /**
  92        * Set s the valu e of the e ndDate pro perty.
  93        * 
  94        * @pa ram value
  95        *      allowed o bject is
  96        *      {@link XM LGregorian Calendar }
  97        *      
  98        */
  99       public  void setE ndDate(XML GregorianC alendar va lue) {
  100           th is.endDate  = value;
  101       }
  102  
  103       /**
  104        * Get s the valu e of the f amilyName  property.
  105        * 
  106        * @re turn
  107        *      possible  object is
  108        *      {@link St ring }
  109        *      
  110        */
  111       public  String ge tFamilyNam e() {
  112           re turn famil yName;
  113       }
  114  
  115       /**
  116        * Set s the valu e of the f amilyName  property.
  117        * 
  118        * @pa ram value
  119        *      allowed o bject is
  120        *      {@link St ring }
  121        *      
  122        */
  123       public  void setF amilyName( String val ue) {
  124           th is.familyN ame = valu e;
  125       }
  126  
  127       /**
  128        * Get s the valu e of the g ender prop erty.
  129        * 
  130        * @re turn
  131        *      possible  object is
  132        *      {@link St ring }
  133        *      
  134        */
  135       public  String ge tGender()  {
  136           re turn gende r;
  137       }
  138  
  139       /**
  140        * Set s the valu e of the g ender prop erty.
  141        * 
  142        * @pa ram value
  143        *      allowed o bject is
  144        *      {@link St ring }
  145        *      
  146        */
  147       public  void setG ender(Stri ng value)  {
  148           th is.gender  = value;
  149       }
  150  
  151       /**
  152        * Get s the valu e of the g ivenName p roperty.
  153        * 
  154        * @re turn
  155        *      possible  object is
  156        *      {@link St ring }
  157        *      
  158        */
  159       public  String ge tGivenName () {
  160           re turn given Name;
  161       }
  162  
  163       /**
  164        * Set s the valu e of the g ivenName p roperty.
  165        * 
  166        * @pa ram value
  167        *      allowed o bject is
  168        *      {@link St ring }
  169        *      
  170        */
  171       public  void setG ivenName(S tring valu e) {
  172           th is.givenNa me = value ;
  173       }
  174  
  175       /**
  176        * Get s the valu e of the m iddleName  property.
  177        * 
  178        * @re turn
  179        *      possible  object is
  180        *      {@link St ring }
  181        *      
  182        */
  183       public  String ge tMiddleNam e() {
  184           re turn middl eName;
  185       }
  186  
  187       /**
  188        * Set s the valu e of the m iddleName  property.
  189        * 
  190        * @pa ram value
  191        *      allowed o bject is
  192        *      {@link St ring }
  193        *      
  194        */
  195       public  void setM iddleName( String val ue) {
  196           th is.middleN ame = valu e;
  197       }
  198  
  199       /**
  200        * Get s the valu e of the r elationshi p property .
  201        * 
  202        * @re turn
  203        *      possible  object is
  204        *      {@link St ring }
  205        *      
  206        */
  207       public  String ge tRelations hip() {
  208           re turn relat ionship;
  209       }
  210  
  211       /**
  212        * Set s the valu e of the r elationshi p property .
  213        * 
  214        * @pa ram value
  215        *      allowed o bject is
  216        *      {@link St ring }
  217        *      
  218        */
  219       public  void setR elationshi p(String v alue) {
  220           th is.relatio nship = va lue;
  221       }
  222  
  223       /**
  224        * Get s the valu e of the s sns proper ty.
  225        * 
  226        * @re turn
  227        *      possible  object is
  228        *      {@link Ss nCollectio n }
  229        *      
  230        */
  231       public  SsnCollec tion getSs ns() {
  232           re turn ssns;
  233       }
  234  
  235       /**
  236        * Set s the valu e of the s sns proper ty.
  237        * 
  238        * @pa ram value
  239        *      allowed o bject is
  240        *      {@link Ss nCollectio n }
  241        *      
  242        */
  243       public  void setS sns(SsnCol lection va lue) {
  244           th is.ssns =  value;
  245       }
  246  
  247       /**
  248        * Get s the valu e of the s tartDate p roperty.
  249        * 
  250        * @re turn
  251        *      possible  object is
  252        *      {@link St ring }
  253        *      
  254        */
  255       public  String ge tStartDate () {
  256           re turn start Date;
  257       }
  258  
  259       /**
  260        * Set s the valu e of the s tartDate p roperty.
  261        * 
  262        * @pa ram value
  263        *      allowed o bject is
  264        *      {@link St ring }
  265        *      
  266        */
  267       public  void setS tartDate(S tring valu e) {
  268           th is.startDa te = value ;
  269       }
  270  
  271   }