57. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/2/2019 1:06:55 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.

57.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model Customer.java Wed Mar 27 19:21:10 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model Customer.java Thu Mar 28 17:50:44 2019 UTC

57.2 Comparison summary

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

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

57.4 Active regular expressions

No regular expressions were active.

57.5 Comparison detail

  1   package go v.va.med.a rs.model;
  2  
  3   import jav a.util.Dat e;
  4   /**
  5    * 
  6    * @author  
D NS     GANGAV
  7    *
  8    */
  9   public cla ss Custome r {
  10  
  11           pr ivate Long  id;
  12           pr ivate Stri ng firstNa me;
  13           pr ivate Stri ng lastNam e;
  14           pr ivate Stri ng email;
  15           pr ivate Stri ng mobile;
  16           pr ivate Date  dateOfBir th;
  17  
  18           pu blic Custo mer(long i d, String  firstName,  String la stName, St ring email , String m obile) {
  19                    this .id = id;
  20                    this .firstName  = firstNa me;
  21                    this .lastName  = lastName ;
  22                    this .email = e mail;
  23                    this .mobile =  mobile;
  24                    this .dateOfBir th = new D ate();
  25           }
  26  
  27           pu blic Custo mer() {
  28           }
  29  
  30           pu blic Long  getId() {
  31                    retu rn id;
  32           }
  33  
  34           pu blic void  setId(Long  id) {
  35                    this .id = id;
  36           }
  37  
  38           pu blic Strin g getFirst Name() {
  39                    retu rn firstNa me;
  40           }
  41  
  42           pu blic void  setFirstNa me(String  firstName)  {
  43                    this .firstName  = firstNa me;
  44           }
  45  
  46           pu blic Strin g getLastN ame() {
  47                    retu rn lastNam e;
  48           }
  49  
  50           pu blic void  setLastNam e(String l astName) {
  51                    this .lastName  = lastName ;
  52           }
  53  
  54           pu blic Strin g getEmail () {
  55                    retu rn email;
  56           }
  57  
  58           pu blic void  setEmail(S tring emai l) {
  59                    this .email = e mail;
  60           }
  61  
  62           pu blic Strin g getMobil e() {
  63                    retu rn mobile;
  64           }
  65  
  66           pu blic void  setMobile( String mob ile) {
  67                    this .mobile =  mobile;
  68           }
  69  
  70           pu blic Date  getDateOfB irth() {
  71                    retu rn dateOfB irth;
  72           }
  73  
  74           pu blic void  setDateOfB irth(Date  dateOfBirt h) {
  75                    this .dateOfBir th = dateO fBirth;
  76           }
  77  
  78   }