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

59.1 Files compared

# Location File Last Modified
1 cpss.zip\cpss\src\main\java\gov\va\cpss\model\fps PSDetails.java Wed Feb 1 21:07:28 2017 UTC
2 cpss.zip\cpss\src\main\java\gov\va\cpss\model\fps PSDetails.java Fri Feb 3 21:01:13 2017 UTC

59.2 Comparison summary

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

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

59.4 Active regular expressions

No regular expressions were active.

59.5 Comparison detail

  1   package go v.va.cpss. model.fps;
  2  
  3   import jav a.util.Dat e;
  4  
  5   import gov .va.cpss.c obol.Money ;
  6  
  7   /**
  8    * Bean cl ass for th e PSDetail s database  table.
  9    * 
  10    * @author   D N   
  11    */
  12   public cla ss PSDetai ls extends  PSRecord  {
  13  
  14           pr ivate long  id;
  15           pr ivate long  psPatient Id;
  16           pr ivate Date  datePoste d;
  17           pr ivate Stri ng transDe sc;
  18           pr ivate Mone y transAmo unt;
  19           pr ivate Stri ng referen ceNum;
  20           pr ivate Stri ng icnNumb er;
  21           pr ivate int  seqNum;
  22           pr ivate Stri ng created By;
  23           pr ivate Date  createdDa te;
  24           pr ivate Stri ng modifie dBy;
  25           pr ivate Date  modifiedD ate;
  26  
  27           pu blic long  getId() {
  28                    retu rn id;
  29           }
  30  
  31           pu blic void  setId(long  id) {
  32                    this .id = id;
  33           }
  34  
  35           pu blic long  getPsPatie ntId() {
  36                    retu rn psPatie ntId;
  37           }
  38  
  39           pu blic void  setPsPatie ntId(long  psPatientI d) {
  40                    this .psPatient Id = psPat ientId;
  41           }
  42  
  43           pu blic Date  getDatePos ted() {
  44                    retu rn datePos ted;
  45           }
  46  
  47           pu blic void  setDatePos ted(Date d atePosted)  {
  48                    this .datePoste d = datePo sted;
  49           }
  50  
  51           pu blic Strin g getTrans Desc() {
  52                    retu rn transDe sc;
  53           }
  54  
  55           pu blic void  setTransDe sc(String  transDesc)  {
  56                    this .transDesc  = transDe sc;
  57           }
  58  
  59           pu blic Money  getTransA mount() {
  60                    retu rn transAm ount;
  61           }
  62  
  63           pu blic void  setTransAm ount(Money  transAmou nt) {
  64                    this .transAmou nt = trans Amount;
  65           }
  66  
  67           pu blic Strin g getRefer enceNum()  {
  68                    retu rn referen ceNum;
  69           }
  70  
  71           pu blic void  setReferen ceNum(Stri ng referen ceNum) {
  72                    this .reference Num = refe renceNum;
  73           }
  74  
  75           pu blic Strin g getIcnNu mber() {
  76                    retu rn icnNumb er;
  77           }
  78  
  79           pu blic void  setIcnNumb er(String  icnNumber)  {
  80                    this .icnNumber  = icnNumb er;
  81           }
  82  
  83           pu blic int g etSeqNum()  {
  84                    retu rn seqNum;
  85           }
  86  
  87           pu blic void  setSeqNum( int seqNum ) {
  88                    this .seqNum =  seqNum;
  89           }
  90  
  91           pu blic Strin g getCreat edBy() {
  92                    retu rn created By;
  93           }
  94  
  95           pu blic void  setCreated By(String  createdBy)  {
  96                    this .createdBy  = created By;
  97           }
  98  
  99           pu blic Date  getCreated Date() {
  100                    retu rn created Date;
  101           }
  102  
  103           pu blic void  setCreated Date(Date  createdDat e) {
  104                    this .createdDa te = creat edDate;
  105           }
  106  
  107           pu blic Strin g getModif iedBy() {
  108                    retu rn modifie dBy;
  109           }
  110  
  111           pu blic void  setModifie dBy(String  modifiedB y) {
  112                    this .modifiedB y = modifi edBy;
  113           }
  114  
  115           pu blic Date  getModifie dDate() {
  116                    retu rn modifie dDate;
  117           }
  118  
  119           pu blic void  setModifie dDate(Date  modifiedD ate) {
  120                    this .modifiedD ate = modi fiedDate;
  121           }
  122  
  123           @O verride
  124           pu blic Strin g toString () {
  125                    retu rn "Detail s [id=" +  id + ", ps PatientId= " + psPati entId + ",  datePoste d=" + date Posted + " , transDes c="
  126                                      + transD esc + ", t ransAmount =" + trans Amount + " , referenc eNum=" + r eferenceNu m + ", cre atedBy="
  127                                      + create dBy + ", c reatedDate =" + creat edDate + " , modified By=" + mod ifiedBy +  ", modifie dDate="
  128                                      + modifi edDate + " ]";
  129           }
  130  
  131   }