53. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 2/7/2017 12:14:07 PM Eastern Standard 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.

53.1 Files compared

# Location File Last Modified
1 cpss.zip\cpss\src\main\java\gov\va\cpss\model\cbs CBSAccount.java Wed Feb 1 21:07:28 2017 UTC
2 cpss.zip\cpss\src\main\java\gov\va\cpss\model\cbs CBSAccount.java Fri Feb 3 20:58:25 2017 UTC

53.2 Comparison summary

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

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

53.4 Active regular expressions

No regular expressions were active.

53.5 Comparison detail

  1   package go v.va.cpss. model.cbs;
  2  
  3   import jav a.util.Dat e;
  4  
  5   import gov .va.cpss.m odel.CBSSA uditDates;
  6  
  7   /**
  8    * Bean cl ass for th e CBSAccou nt databas e table.
  9    * 
  10    * @author   D N   
  11    */
  12   public cla ss CBSAcco unt implem ents CBSSA uditDates  {
  13  
  14           pr ivate long  id;
  15           pr ivate Stri ng icn;
  16           pr ivate Stri ng created By;
  17           pr ivate Date  createdDa te;
  18           pr ivate Stri ng modifie dBy;
  19           pr ivate Date  modifiedD ate;
  20  
  21           pu blic long  getId() {
  22                    retu rn id;
  23           }
  24  
  25           pu blic void  setId(long  id) {
  26                    this .id = id;
  27           }
  28  
  29           pu blic Strin g getIcn()  {
  30                    retu rn icn;
  31           }
  32  
  33           pu blic void  setIcn(Str ing icn) {
  34                    this .icn = icn ;
  35           }
  36  
  37           @O verride
  38           pu blic Strin g getCreat edBy() {
  39                    retu rn created By;
  40           }
  41  
  42           @O verride
  43           pu blic void  setCreated By(String  createdBy)  {
  44                    this .createdBy  = created By;
  45           }
  46  
  47           @O verride
  48           pu blic Date  getCreated Date() {
  49                    retu rn created Date;
  50           }
  51  
  52           @O verride
  53           pu blic void  setCreated Date(Date  createdDat e) {
  54                    this .createdDa te = creat edDate;
  55           }
  56  
  57           @O verride
  58           pu blic Strin g getModif iedBy() {
  59                    retu rn modifie dBy;
  60           }
  61  
  62           @O verride
  63           pu blic void  setModifie dBy(String  modifiedB y) {
  64                    this .modifiedB y = modifi edBy;
  65           }
  66  
  67           @O verride
  68           pu blic Date  getModifie dDate() {
  69                    retu rn modifie dDate;
  70           }
  71  
  72           @O verride
  73           pu blic void  setModifie dDate(Date  modifiedD ate) {
  74                    this .modifiedD ate = modi fiedDate;
  75           }
  76  
  77           /*  (non-Java doc)
  78            *  @see java .lang.Obje ct#toStrin g()
  79            * /
  80           @O verride
  81           pu blic Strin g toString () {
  82                    retu rn "CBSAcc ount [id="  + id + ",  icn=" + i cn + ", cr eatedBy="  + createdB y + ", cre atedDate="  + created Date
  83                                      + ", mod ifiedBy="  + modified By + ", mo difiedDate =" + modif iedDate +  "]";
  84           }
  85           
  86  
  87   }