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

57.1 Files compared

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

57.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 266
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.cpss. model.cbs;
  2  
  3   import jav a.io.Seria lizable;
  4   import jav a.util.Dat e;
  5  
  6   import gov .va.cpss.c obol.Money ;
  7   import gov .va.cpss.m odel.CBSSA uditDates;
  8  
  9   /**
  10    * Bean cl ass for th e CBSSiteT rans datab ase table.
  11    * 
  12    * @author   D N   
  13    */
  14   public cla ss CBSSite Trans impl ements CBS SAuditDate s, Seriali zable {
  15  
  16           pr ivate stat ic final l ong serial VersionUID  = 1L;
  17  
  18           pr ivate long  id;
  19           pr ivate long  siteStmtI d;
  20           pr ivate Date  datePoste d;
  21           pr ivate Stri ng transDe sc;
  22           pr ivate Mone y transAmo unt;
  23           pr ivate Stri ng referen ceNum;
  24           pr ivate int  orderNum;
  25           pr ivate Stri ng created By;
  26           pr ivate Date  createdDa te;
  27           pr ivate Stri ng modifie dBy;
  28           pr ivate Date  modifiedD ate;
  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 long  getSiteStm tId() {
  39                    retu rn siteStm tId;
  40           }
  41  
  42           pu blic void  setSiteStm tId(long s iteStmtId)  {
  43                    this .siteStmtI d = siteSt mtId;
  44           }
  45  
  46           pu blic Date  getDatePos ted() {
  47                    retu rn datePos ted;
  48           }
  49  
  50           pu blic void  setDatePos ted(Date d atePosted)  {
  51                    this .datePoste d = datePo sted;
  52           }
  53  
  54           pu blic Strin g getTrans Desc() {
  55                    retu rn transDe sc;
  56           }
  57  
  58           pu blic void  setTransDe sc(String  transDesc)  {
  59                    this .transDesc  = transDe sc;
  60           }
  61  
  62           pu blic Money  getTransA mount() {
  63                    retu rn transAm ount;
  64           }
  65  
  66           pu blic void  setTransAm ount(Money  transAmou nt) {
  67                    this .transAmou nt = trans Amount;
  68           }
  69  
  70           pu blic Strin g getRefer enceNum()  {
  71                    retu rn referen ceNum;
  72           }
  73  
  74           pu blic void  setReferen ceNum(Stri ng referen ceNum) {
  75                    this .reference Num = refe renceNum;
  76           }
  77  
  78           pu blic int g etOrderNum () {
  79                    retu rn orderNu m;
  80           }
  81  
  82           pu blic void  setOrderNu m(int orde rNum) {
  83                    this .orderNum  = orderNum ;
  84           }
  85  
  86           @O verride
  87           pu blic Strin g getCreat edBy() {
  88                    retu rn created By;
  89           }
  90  
  91           @O verride
  92           pu blic void  setCreated By(String  createdBy)  {
  93                    this .createdBy  = created By;
  94           }
  95  
  96           @O verride
  97           pu blic Date  getCreated Date() {
  98                    retu rn created Date;
  99           }
  100  
  101           @O verride
  102           pu blic void  setCreated Date(Date  createdDat e) {
  103                    this .createdDa te = creat edDate;
  104           }
  105  
  106           @O verride
  107           pu blic Strin g getModif iedBy() {
  108                    retu rn modifie dBy;
  109           }
  110  
  111           @O verride
  112           pu blic void  setModifie dBy(String  modifiedB y) {
  113                    this .modifiedB y = modifi edBy;
  114           }
  115  
  116           @O verride
  117           pu blic Date  getModifie dDate() {
  118                    retu rn modifie dDate;
  119           }
  120  
  121           @O verride
  122           pu blic void  setModifie dDate(Date  modifiedD ate) {
  123                    this .modifiedD ate = modi fiedDate;
  124           }
  125  
  126           @O verride
  127           pu blic Strin g toString () {
  128                    retu rn "CBSSit eTrans [id =" + id +  ", siteStm tId=" + si teStmtId +  ", datePo sted=" + d atePosted  + ", trans Desc="
  129                                      + transD esc + ", t ransAmount =" + trans Amount.get DoubleAsSt ring() + " , referenc eNum=" + r eferenceNu m
  130                                      + ", ord erNum=" +  orderNum +  ", create dBy=" + cr eatedBy +  ", created Date=" + c reatedDate
  131                                      + ", mod ifiedBy="  + modified By + ", mo difiedDate =" + modif iedDate +  "]";
  132           }
  133  
  134   }