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

65.1 Files compared

# Location File Last Modified
1 cpss.zip\cpss\src\main\java\gov\va\cpss\model\icn VistaAccount.java Wed Feb 1 21:07:28 2017 UTC
2 cpss.zip\cpss\src\main\java\gov\va\cpss\model\icn VistaAccount.java Mon Feb 6 15:12:46 2017 UTC

65.2 Comparison summary

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

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

65.4 Active regular expressions

No regular expressions were active.

65.5 Comparison detail

  1   package go v.va.cpss. model.icn;
  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 VistaAcc ount datab ase table.
  9    * 
  10    * @author   DN S      D N S
  11    */
  12   public cla ss VistaAc count impl ements CBS SAuditDate s {
  13  
  14           pr ivate long  dfn;
  15           pr ivate Stri ng station Num;
  16           pr ivate Stri ng icn;
  17           pr ivate long  cbssAcntI d;
  18           pr ivate int  statusId;
  19           pr ivate Stri ng created By;
  20           pr ivate Date  createdDa te;
  21           pr ivate Stri ng modifie dBy;
  22           pr ivate Date  modifiedD ate;
  23  
  24           pu blic Vista Account()  {}
  25           
  26           pu blic Vista Account(fi nal long d fn, final  String sta tionNum, f inal Strin g icn, fin al long cb ssAcntId)  {
  27                    this .dfn = dfn ;
  28                    this .stationNu m = statio nNum;
  29                    this .icn = icn ;
  30                    this .cbssAcntI d = cbssAc ntId;
  31           }
  32           
  33           pu blic long  getDfn() {
  34                    retu rn dfn;
  35           }
  36  
  37           pu blic void  setDfn(lon g dfn) {
  38                    this .dfn = dfn ;
  39           }
  40  
  41           pu blic Strin g getStati onNum() {
  42                    retu rn station Num;
  43           }
  44  
  45           pu blic void  setStation Num(String  stationNu m) {
  46                    this .stationNu m = statio nNum;
  47           }
  48  
  49           pu blic Strin g getIcn()  {
  50                    retu rn icn;
  51           }
  52  
  53           pu blic void  setIcn(Str ing icn) {
  54                    this .icn = icn ;
  55           }
  56  
  57           pu blic long  getCbssAcn tId() {
  58                    retu rn cbssAcn tId;
  59           }
  60  
  61           pu blic void  setCbssAcn tId(long c bssAcntId)  {
  62                    this .cbssAcntI d = cbssAc ntId;
  63           }
  64  
  65           pu blic int g etStatusId () {
  66                    retu rn statusI d;
  67           }
  68  
  69           pu blic void  setStatusI d(int stat usId) {
  70                    this .statusId  = statusId ;
  71           }
  72  
  73           pu blic Strin g getCreat edBy() {
  74                    retu rn created By;
  75           }
  76  
  77           pu blic void  setCreated By(String  createdBy)  {
  78                    this .createdBy  = created By;
  79           }
  80  
  81           pu blic Date  getCreated Date() {
  82                    retu rn created Date;
  83           }
  84  
  85           pu blic void  setCreated Date(Date  createdDat e) {
  86                    this .createdDa te = creat edDate;
  87           }
  88  
  89           pu blic Strin g getModif iedBy() {
  90                    retu rn modifie dBy;
  91           }
  92  
  93           pu blic void  setModifie dBy(String  modifiedB y) {
  94                    this .modifiedB y = modifi edBy;
  95           }
  96  
  97           pu blic Date  getModifie dDate() {
  98                    retu rn modifie dDate;
  99           }
  100  
  101           pu blic void  setModifie dDate(Date  modifiedD ate) {
  102                    this .modifiedD ate = modi fiedDate;
  103           }
  104  
  105   }