37281. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/12/2018 3:21:06 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.

37281.1 Files compared

# Location File Last Modified
1 CareT v1_iter1_build_2.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\ee RelationInfo.java Mon Apr 9 18:52:52 2018 UTC
2 CareT v1_iter1_build_2.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\ee RelationInfo.java Wed Apr 11 18:23:28 2018 UTC

37281.2 Comparison summary

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

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

37281.4 Active regular expressions

No regular expressions were active.

37281.5 Comparison detail

  1  
  2   package go v.va.ee;
  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  relationI nfo comple x 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="relat ionInfo">
  18    *   &lt;c omplexCont ent>
  19    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
  20    *       & lt;sequenc e>
  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:// DNS . 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;/sequen ce>
  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 = "rel ationInfo" , propOrde r = {
  40       "dob",
  41       "endDa te",
  42       "famil yName",
  43       "gende r",
  44       "given Name",
  45       "middl eName",
  46       "relat ionship",
  47       "ssns" ,
  48       "start Date"
  49   })
  50   public cla ss Relatio nInfo {
  51  
  52       protec ted String  dob;
  53       @XmlSc hemaType(n ame = "dat eTime")
  54       protec ted XMLGre gorianCale ndar endDa te;
  55       protec ted String  familyNam e;
  56       protec ted String  gender;
  57       protec ted String  givenName ;
  58       protec ted String  middleNam e;
  59       protec ted String  relations hip;
  60       protec ted SsnCol lection ss ns;
  61       protec ted String  startDate ;
  62  
  63       /**
  64        * Get s the valu e of the d ob propert y.
  65        * 
  66        * @re turn
  67        *      possible  object is
  68        *      {@link St ring }
  69        *      
  70        */
  71       public  String ge tDob() {
  72           re turn dob;
  73       }
  74  
  75       /**
  76        * Set s the valu e of the d ob propert y.
  77        * 
  78        * @pa ram value
  79        *      allowed o bject is
  80        *      {@link St ring }
  81        *      
  82        */
  83       public  void setD ob(String  value) {
  84           th is.dob = v alue;
  85       }
  86  
  87       /**
  88        * Get s the valu e of the e ndDate pro perty.
  89        * 
  90        * @re turn
  91        *      possible  object is
  92        *      {@link XM LGregorian Calendar }
  93        *      
  94        */
  95       public  XMLGregor ianCalenda r getEndDa te() {
  96           re turn endDa te;
  97       }
  98  
  99       /**
  100        * Set s the valu e of the e ndDate pro perty.
  101        * 
  102        * @pa ram value
  103        *      allowed o bject is
  104        *      {@link XM LGregorian Calendar }
  105        *      
  106        */
  107       public  void setE ndDate(XML GregorianC alendar va lue) {
  108           th is.endDate  = value;
  109       }
  110  
  111       /**
  112        * Get s the valu e of the f amilyName  property.
  113        * 
  114        * @re turn
  115        *      possible  object is
  116        *      {@link St ring }
  117        *      
  118        */
  119       public  String ge tFamilyNam e() {
  120           re turn famil yName;
  121       }
  122  
  123       /**
  124        * Set s the valu e of the f amilyName  property.
  125        * 
  126        * @pa ram value
  127        *      allowed o bject is
  128        *      {@link St ring }
  129        *      
  130        */
  131       public  void setF amilyName( String val ue) {
  132           th is.familyN ame = valu e;
  133       }
  134  
  135       /**
  136        * Get s the valu e of the g ender prop erty.
  137        * 
  138        * @re turn
  139        *      possible  object is
  140        *      {@link St ring }
  141        *      
  142        */
  143       public  String ge tGender()  {
  144           re turn gende r;
  145       }
  146  
  147       /**
  148        * Set s the valu e of the g ender prop erty.
  149        * 
  150        * @pa ram value
  151        *      allowed o bject is
  152        *      {@link St ring }
  153        *      
  154        */
  155       public  void setG ender(Stri ng value)  {
  156           th is.gender  = value;
  157       }
  158  
  159       /**
  160        * Get s the valu e of the g ivenName p roperty.
  161        * 
  162        * @re turn
  163        *      possible  object is
  164        *      {@link St ring }
  165        *      
  166        */
  167       public  String ge tGivenName () {
  168           re turn given Name;
  169       }
  170  
  171       /**
  172        * Set s the valu e of the g ivenName p roperty.
  173        * 
  174        * @pa ram value
  175        *      allowed o bject is
  176        *      {@link St ring }
  177        *      
  178        */
  179       public  void setG ivenName(S tring valu e) {
  180           th is.givenNa me = value ;
  181       }
  182  
  183       /**
  184        * Get s the valu e of the m iddleName  property.
  185        * 
  186        * @re turn
  187        *      possible  object is
  188        *      {@link St ring }
  189        *      
  190        */
  191       public  String ge tMiddleNam e() {
  192           re turn middl eName;
  193       }
  194  
  195       /**
  196        * Set s the valu e of the m iddleName  property.
  197        * 
  198        * @pa ram value
  199        *      allowed o bject is
  200        *      {@link St ring }
  201        *      
  202        */
  203       public  void setM iddleName( String val ue) {
  204           th is.middleN ame = valu e;
  205       }
  206  
  207       /**
  208        * Get s the valu e of the r elationshi p property .
  209        * 
  210        * @re turn
  211        *      possible  object is
  212        *      {@link St ring }
  213        *      
  214        */
  215       public  String ge tRelations hip() {
  216           re turn relat ionship;
  217       }
  218  
  219       /**
  220        * Set s the valu e of the r elationshi p property .
  221        * 
  222        * @pa ram value
  223        *      allowed o bject is
  224        *      {@link St ring }
  225        *      
  226        */
  227       public  void setR elationshi p(String v alue) {
  228           th is.relatio nship = va lue;
  229       }
  230  
  231       /**
  232        * Get s the valu e of the s sns proper ty.
  233        * 
  234        * @re turn
  235        *      possible  object is
  236        *      {@link Ss nCollectio n }
  237        *      
  238        */
  239       public  SsnCollec tion getSs ns() {
  240           re turn ssns;
  241       }
  242  
  243       /**
  244        * Set s the valu e of the s sns proper ty.
  245        * 
  246        * @pa ram value
  247        *      allowed o bject is
  248        *      {@link Ss nCollectio n }
  249        *      
  250        */
  251       public  void setS sns(SsnCol lection va lue) {
  252           th is.ssns =  value;
  253       }
  254  
  255       /**
  256        * Get s the valu e of the s tartDate p roperty.
  257        * 
  258        * @re turn
  259        *      possible  object is
  260        *      {@link St ring }
  261        *      
  262        */
  263       public  String ge tStartDate () {
  264           re turn start Date;
  265       }
  266  
  267       /**
  268        * Set s the valu e of the s tartDate p roperty.
  269        * 
  270        * @pa ram value
  271        *      allowed o bject is
  272        *      {@link St ring }
  273        *      
  274        */
  275       public  void setS tartDate(S tring valu e) {
  276           th is.startDa te = value ;
  277       }
  278  
  279   }