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

63.1 Files compared

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

63.2 Comparison summary

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

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

63.4 Active regular expressions

No regular expressions were active.

63.5 Comparison detail

  1   package go v.va.cpss. model.fps;
  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 PSSite d atabase ta ble.
  11    * 
  12    * @author   DN S      D N S
  13    */
  14   public cla ss PSSite  extends PS Record imp lements CB SSAuditDat es, Serial izable {
  15  
  16           pr ivate stat ic final l ong serial VersionUID  = 1L;
  17  
  18           pr ivate long  id;
  19           pr ivate long  psReceive dId;
  20           pr ivate int  seqNum;
  21           pr ivate int  totSeqNum;
  22           pr ivate Stri ng facilit yNum;
  23           pr ivate Stri ng facilit yPhoneNum;
  24           pr ivate int  totStateme nt;
  25           pr ivate Mone y statemen tVal;
  26           pr ivate Date  statement Date;
  27           pr ivate Date  processDa te;
  28           pr ivate Data Type state mentType =  DataType. P1;
  29           pr ivate Stri ng created By;
  30           pr ivate Date  createdDa te;
  31           pr ivate Stri ng modifie dBy;
  32           pr ivate Date  modifiedD ate;
  33  
  34           pu blic PSSit e() {
  35           }
  36  
  37           pu blic PSSit e(final lo ng id) {
  38                    this .id = id;
  39           }
  40  
  41           pu blic long  getId() {
  42                    retu rn id;
  43           }
  44  
  45           pu blic void  setId(long  id) {
  46                    this .id = id;
  47           }
  48  
  49           pu blic long  getPsRecei vedId() {
  50                    retu rn psRecei vedId;
  51           }
  52  
  53           pu blic void  setPsRecei vedId(long  psReceive dId) {
  54                    this .psReceive dId = psRe ceivedId;
  55           }
  56  
  57           pu blic int g etSeqNum()  {
  58                    retu rn seqNum;
  59           }
  60  
  61           pu blic void  setSeqNum( int seqNum ) {
  62                    this .seqNum =  seqNum;
  63           }
  64  
  65           pu blic int g etTotSeqNu m() {
  66                    retu rn totSeqN um;
  67           }
  68  
  69           pu blic void  setTotSeqN um(int tot SeqNum) {
  70                    this .totSeqNum  = totSeqN um;
  71           }
  72  
  73           pu blic Strin g getFacil ityNum() {
  74                    retu rn facilit yNum;
  75           }
  76  
  77           pu blic void  setFacilit yNum(Strin g facility Num) {
  78                    this .facilityN um = facil ityNum;
  79           }
  80  
  81           pu blic Strin g getFacil ityPhoneNu m() {
  82                    retu rn facilit yPhoneNum;
  83           }
  84  
  85           pu blic void  setFacilit yPhoneNum( String fac ilityPhone Num) {
  86                    this .facilityP honeNum =  facilityPh oneNum;
  87           }
  88  
  89           pu blic int g etTotState ment() {
  90                    retu rn totStat ement;
  91           }
  92  
  93           pu blic void  setTotStat ement(int  totStateme nt) {
  94                    this .totStatem ent = totS tatement;
  95           }
  96  
  97           pu blic Money  getStatem entVal() {
  98                    retu rn stateme ntVal;
  99           }
  100  
  101           pu blic void  setStateme ntVal(Mone y statemen tVal) {
  102                    this .statement Val = stat ementVal;
  103           }
  104  
  105           pu blic Date  getStateme ntDate() {
  106                    retu rn stateme ntDate;
  107           }
  108  
  109           pu blic void  setStateme ntDate(Dat e statemen tDate) {
  110                    this .statement Date = sta tementDate ;
  111           }
  112  
  113           pu blic Date  getProcess Date() {
  114                    retu rn process Date;
  115           }
  116  
  117           pu blic void  setProcess Date(Date  processDat e) {
  118                    this .processDa te = proce ssDate;
  119           }
  120  
  121           pu blic DataT ype getSta tementType () {
  122                    retu rn stateme ntType;
  123           }
  124  
  125           pu blic void  setStateme ntType(Dat aType stat ementType)  {
  126                    this .statement Type = sta tementType ;
  127           }
  128  
  129           pu blic Strin g getCreat edBy() {
  130                    retu rn created By;
  131           }
  132  
  133           pu blic void  setCreated By(String  createdBy)  {
  134                    this .createdBy  = created By;
  135           }
  136  
  137           pu blic Date  getCreated Date() {
  138                    retu rn created Date;
  139           }
  140  
  141           pu blic void  setCreated Date(Date  createdDat e) {
  142                    this .createdDa te = creat edDate;
  143           }
  144  
  145           pu blic Strin g getModif iedBy() {
  146                    retu rn modifie dBy;
  147           }
  148  
  149           pu blic void  setModifie dBy(String  modifiedB y) {
  150                    this .modifiedB y = modifi edBy;
  151           }
  152  
  153           pu blic Date  getModifie dDate() {
  154                    retu rn modifie dDate;
  155           }
  156  
  157           pu blic void  setModifie dDate(Date  modifiedD ate) {
  158                    this .modifiedD ate = modi fiedDate;
  159           }
  160  
  161           @O verride
  162           pu blic Strin g toString () {
  163                    retu rn "Site [ id=" + id  + ", psRec eivedId="  + psReceiv edId + ",  seqNum=" +  seqNum +  ", totSeqN um=" + tot SeqNum
  164                                      + ", fac ilityNum="  + facilit yNum + ",  facilityPh oneNum=" +  facilityP honeNum +  ", totStat ement="
  165                                      + totSta tement + " , statemen tVal=" + s tatementVa l + ", sta tementDate =" + state mentDate
  166                                      + ", pro cessDate="  + process Date + ",  statementT ype=" + st atementTyp e + ", cre atedBy=" +  createdBy
  167                                      + ", cre atedDate="  + created Date + ",  modifiedBy =" + modif iedBy + ",  modifiedD ate=" + mo difiedDate
  168                                      + "]";
  169           }
  170  
  171   }