5. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/6/2017 8:32:13 AM Central Daylight 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.

5.1 Files compared

# Location File Last Modified
1 HC 837 Compliance 05122017.zip\HC 837 Compliance 05122017\EDI_CodeConversion\EDI_CodeConversion\src\main\gov\va\med\hac\edi\extract\feeclaimstatus\feeFinal Stage277.java Thu May 12 19:17:58 2016 UTC
2 HC 837 Compliance 05122017.zip\HC 837 Compliance 05122017\EDI_CodeConversion\EDI_CodeConversion\src\main\gov\va\med\hac\edi\extract\feeclaimstatus\feeFinal Stage277.java Wed Jul 5 13:05:20 2017 UTC

5.2 Comparison summary

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

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

5.4 Active regular expressions

No regular expressions were active.

5.5 Comparison detail

  1   package go v.va.med.h ac.edi.ext ract.feecl aimstatus. feeFinal;
  2  
  3   import jav a.io.Seria lizable;
  4   import jav a.sql.Date ;
  5  
  6   // import  org.hibern ate.annota tions.Enti ty;
  7  
  8   // import  javax.pers istence.Co lumn;
  9   import jav ax.persist ence.Entit y;
  10   import jav ax.persist ence.Id;
  11   import jav ax.persist ence.Table ;
  12   // import  javax.pers istence.Te mporal;
  13   // import  javax.pers istence.Te mporalType ;
  14  
  15  
  16   /**
  17    * This cl ass maps t he stg_277  table pro perties fo r bulk
  18    * updatin g and edit ing
  19    * @author  
D NS     BLACKW
  20    *
  21    */
  22  
  23   //TODO - R EGENERATE  hashCode,  toString()  etc. afte r datatype s are fles hed out
  24   @Entity
  25   public cla ss Stage27 7 {
  26  
  27           @I d
  28           pr ivate Stri ng claimIn dex;
  29           pr ivate Stri ng claimSt atusCode;
  30           pr ivate Stri ng created By;
  31           pr ivate Date  dateCreat ed;
  32           pr ivate Stri ng modifie dBy;
  33           pr ivate Date  dateModif ied;               
  34           //  is this a utomticall y done by  Oracle or  set progra matically?  FIND OTHE R INSTANCE S IN PROJE CTS
  35           
  36           
  37           pu blic Stage 277() {}
  38  
  39           //  FULL CONS TRUCTOR
  40           pu blic Stage 277(String  claimInde x, String  claimStatu sCode, Str ing create dBy, Date  dateCreate d, String  modifiedBy , Date dat eModified)  {
  41                    this .claimInde x = claimI ndex;
  42                    this .claimStat usCode = c laimStatus Code;
  43                    this .createdBy  = created By;
  44                    this .dateCreat ed = dateC reated;
  45                    this .modifiedB y = modifi edBy;
  46                    this .dateModif ied = date Modified;
  47                    
  48           }
  49  
  50           //  dateModif ied MAY NO T BE NECES SARY...... .
  51           pu blic Stage 277(String  claimInde x, String  claimStatu sCode, Str ing create dBy, Date  dateCreate d) {
  52                    this .claimInde x = claimI ndex;
  53                    this .claimStat usCode = c laimStatus Code;
  54                    this .createdBy  = created By;
  55                    this .dateCreat ed = dateC reated;
  56           }
  57                    
  58           pu blic Strin g getClaim StatusCode () {
  59                    retu rn claimSt atusCode;
  60           }
  61  
  62  
  63           pu blic void  setClaimSt atusCode(S tring clai mStatusCod e) {
  64                    this .claimStat usCode = c laimStatus Code;
  65           }
  66  
  67  
  68           pu blic Strin g getCreat edBy() {
  69                    retu rn created By;
  70           }
  71  
  72  
  73           pu blic void  setCreated By(String  createdBy)  {
  74                    this .createdBy  = created By;
  75           }
  76  
  77  
  78           pu blic Date  getDateCre ated() {
  79                    retu rn dateCre ated;
  80           }
  81  
  82  
  83           pu blic void  setDateCre ated(Date  dateCreate d) {
  84                    this .dateCreat ed = dateC reated;
  85           }
  86  
  87  
  88           pu blic Strin g getModif iedBy() {
  89                    retu rn modifie dBy;
  90           }
  91  
  92  
  93           pu blic void  setModifie dBy(String  modifiedB y) {
  94                    this .modifiedB y = modifi edBy;
  95           }
  96  
  97  
  98           pu blic Date  getDateMod ified() {
  99                    retu rn dateMod ified;
  100           }
  101  
  102  
  103           pu blic void  setDateMod ified(Date  dateModif ied) {
  104                    this .dateModif ied = date Modified;
  105           }
  106           
  107           pu blic Strin g getClaim Index() {
  108                    retu rn claimIn dex;
  109           }
  110  
  111  
  112           pu blic void  setClaimIn dex(String  claimInde x) {
  113                    this .claimInde x = claimI ndex;
  114           }
  115  
  116           @O verride
  117           pu blic Strin g toString () {
  118                    retu rn "Stage2 77 [claimI ndex=" + c laimIndex  + ", claim StatusCode ="
  119                                      + claimS tatusCode  + ", creat edBy=" + c reatedBy
  120                                      + ", dat eCreated="  + dateCre ated + ",  modifiedBy =" + modif iedBy
  121                                      + ", dat eModified= " + dateMo dified + " ]";
  122           }
  123           
  124           
  125           
  126           
  127   }       //  end Stage 277