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

61.1 Files compared

# Location File Last Modified
1 cpss.zip\cpss\src\main\java\gov\va\cpss\model\fps PSReceived.java Wed Feb 1 21:07:28 2017 UTC
2 cpss.zip\cpss\src\main\java\gov\va\cpss\model\fps PSReceived.java Mon Feb 6 14:54:03 2017 UTC

61.2 Comparison summary

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

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

61.4 Active regular expressions

No regular expressions were active.

61.5 Comparison detail

  1   package go v.va.cpss. model.fps;
  2  
  3   import jav a.sql.Time stamp;
  4   import jav a.util.Dat e;
  5  
  6   /**
  7    * Bean cl ass for th e PSReceiv ed databas e table.
  8    * 
  9    * @author   DN S      D N S
  10    */
  11   public cla ss PSRecei ved {
  12  
  13           pr ivate long  id;
  14           pr ivate long  numOfSite ;
  15           pr ivate long  numOfStat ement;
  16           pr ivate Time stamp date Received;
  17           pr ivate int  statusId;
  18           pr ivate Stri ng fileNam e;
  19           pr ivate int  batchRunId ;
  20           pr ivate Stri ng created By;
  21           pr ivate Date  createdDa te;
  22           pr ivate Stri ng modifie dBy;
  23           pr ivate Date  modifiedD ate;
  24  
  25           pu blic PSRec eived(int  batchRunId , int stat usId, Time stamp date Received,  String fil eName) {
  26                    this .batchRunI d = batchR unId;
  27                    this .dateRecei ved = date Received;
  28                    this .statusId  = statusId ;
  29                    this .createdDa te = dateR eceived;
  30                    this .modifiedD ate = date Received;
  31                    this .fileName  = fileName ;
  32           }
  33  
  34           pu blic long  getId() {
  35                    retu rn id;
  36           }
  37  
  38           pu blic void  setId(long  id) {
  39                    this .id = id;
  40           }
  41  
  42           pu blic long  getNumOfSi te() {
  43                    retu rn numOfSi te;
  44           }
  45  
  46           pu blic void  setNumOfSi te(long nu mOfSite) {
  47                    this .numOfSite  = numOfSi te;
  48           }
  49  
  50           pu blic long  getNumOfSt atement()  {
  51                    retu rn numOfSt atement;
  52           }
  53  
  54           pu blic void  setNumOfSt atement(lo ng numOfSt atement) {
  55                    this .numOfStat ement = nu mOfStateme nt;
  56           }
  57  
  58           pu blic Times tamp getDa teReceived () {
  59                    retu rn dateRec eived;
  60           }
  61  
  62           pu blic void  setDateRec eived(Time stamp date Received)  {
  63                    this .dateRecei ved = date Received;
  64           }
  65  
  66           pu blic int g etStatusId () {
  67                    retu rn statusI d;
  68           }
  69  
  70           pu blic void  setStatusI d(int stat usId) {
  71                    this .statusId  = statusId ;
  72           }
  73  
  74           pu blic Strin g getFileN ame() {
  75                    retu rn fileNam e;
  76           }
  77  
  78           pu blic void  setFileNam e(String f ileName) {
  79                    this .fileName  = fileName ;
  80           }
  81  
  82           pu blic int g etBatchRun Id() {
  83                    retu rn batchRu nId;
  84           }
  85  
  86           pu blic void  setBatchRu nId(int ba tchRunId)  {
  87                    this .batchRunI d = batchR unId;
  88           }
  89  
  90           pu blic Strin g getCreat edBy() {
  91                    retu rn created By;
  92           }
  93  
  94           pu blic void  setCreated By(String  createdBy)  {
  95                    this .createdBy  = created By;
  96           }
  97  
  98           pu blic Date  getCreated Date() {
  99                    retu rn created Date;
  100           }
  101  
  102           pu blic void  setCreated Date(Date  createdDat e) {
  103                    this .createdDa te = creat edDate;
  104           }
  105  
  106           pu blic Strin g getModif iedBy() {
  107                    retu rn modifie dBy;
  108           }
  109  
  110           pu blic void  setModifie dBy(String  modifiedB y) {
  111                    this .modifiedB y = modifi edBy;
  112           }
  113  
  114           pu blic Date  getModifie dDate() {
  115                    retu rn modifie dDate;
  116           }
  117  
  118           pu blic void  setModifie dDate(Date  modifiedD ate) {
  119                    this .modifiedD ate = modi fiedDate;
  120           }
  121  
  122   }