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

54.1 Files compared

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

54.2 Comparison summary

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

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

54.4 Active regular expressions

No regular expressions were active.

54.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 CBSMessa ge databas e table.
  9    * 
  10    * @author   D N   
  11    */
  12   public cla ss CBSMess age implem ents CBSSA uditDates  {
  13  
  14           pr ivate long  id;
  15           pr ivate Stri ng fileNam e;
  16           pr ivate long  batchRunI d;
  17           pr ivate int  statusId;
  18           pr ivate Stri ng created By;
  19           pr ivate Date  createdDa te;
  20           pr ivate Stri ng modifie dBy;
  21           pr ivate Date  modifiedD ate;
  22  
  23           pu blic long  getId() {
  24                    retu rn id;
  25           }
  26  
  27           pu blic void  setId(long  id) {
  28                    this .id = id;
  29           }
  30  
  31           pu blic Strin g getFileN ame() {
  32                    retu rn fileNam e;
  33           }
  34           
  35           pu blic Strin g getCBSFi leName() {
  36                    if ( fileName = = null) re turn null;
  37                    
  38                    int  commaPos =  fileName. indexOf(', ');
  39                    
  40                    if ( commaPos <  0) return  null;
  41                    
  42                    retu rn fileNam e.substrin g(0, comma Pos);
  43           }
  44           
  45           pu blic Strin g getSBSFi leName() {
  46                    if ( fileName = = null) re turn null;
  47                    
  48                    int  commaPos =  fileName. indexOf(', ');
  49                    
  50                    if ( commaPos <  0) return  null;
  51                    
  52                    retu rn fileNam e.substrin g(commaPos  + 1);                  
  53           }
  54  
  55           pu blic void  setFileNam e(String f ileName) {
  56                    this .fileName  = fileName ;
  57           }
  58  
  59           pu blic long  getBatchRu nId() {
  60                    retu rn batchRu nId;
  61           }
  62  
  63           pu blic void  setBatchRu nId(long b atchRunId)  {
  64                    this .batchRunI d = batchR unId;
  65           }
  66  
  67           pu blic int g etStatusId () {
  68                    retu rn statusI d;
  69           }
  70  
  71           pu blic void  setStatusI d(int stat usId) {
  72                    this .statusId  = statusId ;
  73           }
  74  
  75           @O verride
  76           pu blic Strin g getCreat edBy() {
  77                    retu rn created By;
  78           }
  79  
  80           @O verride
  81           pu blic void  setCreated By(String  createdBy)  {
  82                    this .createdBy  = created By;
  83           }
  84  
  85           @O verride
  86           pu blic Date  getCreated Date() {
  87                    retu rn created Date;
  88           }
  89  
  90           @O verride
  91           pu blic void  setCreated Date(Date  createdDat e) {
  92                    this .createdDa te = creat edDate;
  93           }
  94  
  95           @O verride
  96           pu blic Strin g getModif iedBy() {
  97                    retu rn modifie dBy;
  98           }
  99  
  100           @O verride
  101           pu blic void  setModifie dBy(String  modifiedB y) {
  102                    this .modifiedB y = modifi edBy;
  103           }
  104  
  105           @O verride
  106           pu blic Date  getModifie dDate() {
  107                    retu rn modifie dDate;
  108           }
  109  
  110           @O verride
  111           pu blic void  setModifie dDate(Date  modifiedD ate) {
  112                    this .modifiedD ate = modi fiedDate;
  113           }
  114  
  115   }