267. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 2/4/2019 11:34:04 AM 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.

267.1 Files compared

# Location File Last Modified
1 MHPRO_v1.x.zip\mhpro-resources-master@a26412b610c.zip\ws\src\main\java\gov\va\mobile\vamf\mhpro\domain FacilityInfo.java Tue Nov 14 19:31:17 2017 UTC
2 MHPRO_v1.x.zip\mhpro-resources-master@a26412b610c.zip\ws\src\main\java\gov\va\mobile\vamf\mhpro\domain FacilityInfo.java Mon Feb 4 15:13:47 2019 UTC

267.2 Comparison summary

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

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

267.4 Active regular expressions

No regular expressions were active.

267.5 Comparison detail

  1   package go v.va.mobil e.vamf.mhp ro.domain;
  2  
  3   import jav a.io.Seria lizable;
  4  
  5   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  6   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  7   import jav ax.xml.bin d.annotati on.XmlElem ent;
  8   import jav ax.xml.bin d.annotati on.XmlRoot Element;
  9  
  10   import org .apache.co mmons.lang 3.builder. EqualsBuil der;
  11   import org .apache.co mmons.lang 3.builder. HashCodeBu ilder;
  12  
  13   import gov .va.mobile .vamf.comm on.domain. Namespace;
  14   import gov .va.mobile .vamf.comm on.ecrud.d omain.Abst ractPersis tentDocume ntEntity;
  15  
  16   /**
  17    * <p>
  18    * This cl ass contai ns informa tion for e ach VA fac ility (suc h as its t imezone).
  19    * </p>
  20    *
  21    * @author   PII
  22    */
  23   @XmlAccess orType(val ue = XmlAc cessType.N ONE)
  24   @XmlRootEl ement(name  = "facili tyInfo", n amespace =  Namespace .VAMF)
  25   public cla ss Facilit yInfo // {
  26                    exte nds Abstra ctPersiste ntDocument Entity<Fac ilityInfo>  implement s Serializ able {
  27           pr ivate stat ic final l ong serial VersionUID  = -782542 3713372628 588L;
  28  
  29           @X mlElement
  30           pr ivate Stri ng station Number;
  31  
  32           @X mlElement
  33           pr ivate Stri ng timeZon e;
  34  
  35           @X mlElement
  36           pr ivate Stri ng clinicI EN;       
  37           
  38           @O verride
  39           pr otected bo olean requ iredEquals (FacilityI nfo i) {
  40                    retu rn new Equ alsBuilder ().append( stationNum ber, i.sta tionNumber ).isEquals ();
  41           }
  42  
  43           @O verride
  44           pr otected in t required HashCode()  {
  45                    retu rn new Has hCodeBuild er().appen d(stationN umber).toH ashCode();
  46           }
  47  
  48           pu blic Strin g getStati onNumber()  {
  49                    retu rn station Number;
  50           }
  51  
  52           pu blic void  setStation Number(Str ing statio nNumber) {
  53                    this .stationNu mber = sta tionNumber ;
  54           }
  55  
  56           pu blic Strin g getTimeZ one() {
  57                    retu rn timeZon e;
  58           }
  59  
  60           pu blic void  setTimeZon e(String t imeZone) {
  61                    this .timeZone  = timeZone ;
  62           }
  63  
  64           pu blic Strin g getClini cIEN() {
  65                    retu rn clinicI EN;
  66           }
  67  
  68           pu blic void  setClinicI EN(String  clinicIEN)  {
  69                    this .clinicIEN  = clinicI EN;
  70           }
  71           
  72   }