63. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/24/2017 5:17:20 PM Eastern 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.

63.1 Files compared

# Location File Last Modified
1 MHV_2017.2.0.0 Code In Flight.zip\Secure Messaging\mhv-sm-admin\src\main\java\gov\va\med\mhv\sm\web\session BlockPatientSession.java Wed Jan 20 07:04:08 2016 UTC
2 MHV_2017.2.0.0 Code In Flight.zip\Secure Messaging\mhv-sm-admin\src\main\java\gov\va\med\mhv\sm\web\session BlockPatientSession.java Fri Mar 24 20:50:11 2017 UTC

63.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 166
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.med.m hv.sm.web. session;
  2  
  3   import gov .va.med.mh v.sm.model .Facility;
  4   import gov .va.med.mh v.sm.model .Patient;
  5  
  6   import jav a.util.Arr ayList;
  7   import jav a.util.Col lection;
  8  
  9   /**
  10    * Represe nts items  that are s tored in t he session  for 
  11    * the pat ient block ing workfl ow.  I hav e tried no t to
  12    * muddy u p the sess ion with v arious ran dom items  but
  13    * instead  opted to  store them  in a sess ion object  that
  14    * can be  created an d cleared  easily
  15    * 
  16    * @author   PII
  17    *
  18    */
  19   public cla ss BlockPa tientSessi on {
  20  
  21           pr ivate Coll ection<Pat ient> pati ents;
  22           pr ivate Pati ent select edPatient;
  23           pr ivate Faci lity selec tedVisn;
  24           pr ivate Coll ection<Fac ility> fac ilities;
  25           pr ivate Faci lity selec tedFacilit y;
  26           pr ivate Stri ng formatt edZipCode;
  27           
  28           pu blic Block PatientSes sion(){
  29                    pati ents = new  ArrayList <Patient>( );
  30                    faci lities = n ew ArrayLi st<Facilit y>();
  31                    sele ctedPatien t = null;
  32                    sele ctedVisn =  null;
  33           }
  34           
  35           pr ivate Coll ection<Fac ility> vis ns = null;
  36           
  37           pu blic Colle ction<Pati ent> getPa tients() {
  38                    retu rn patient s;
  39           }
  40           pu blic void  setPatient s(Collecti on<Patient > patients ) {
  41                    this .patients  = patients ;
  42           }
  43           pu blic Patie nt getSele ctedPatien t() {
  44                    retu rn selecte dPatient;
  45           }
  46           pu blic void  setSelecte dPatient(P atient sel ectedPatie nt) {
  47                    this .selectedP atient = s electedPat ient;
  48           }
  49           pu blic Facil ity getSel ectedVisn( ) {
  50                    retu rn selecte dVisn;
  51           }
  52           pu blic void  setSelecte dVisn(Faci lity selec tedVisn) {
  53                    this .selectedV isn = sele ctedVisn;
  54           }
  55           pu blic Colle ction<Faci lity> getF acilities( ) {
  56                    retu rn facilit ies;
  57           }
  58           pu blic void  setFacilit ies(Collec tion<Facil ity> facil ities) {
  59                    this .facilitie s = facili ties;
  60           }
  61           pu blic Facil ity getSel ectedFacil ity() {
  62                    retu rn selecte dFacility;
  63           }
  64           pu blic void  setSelecte dFacility( Facility s electedFac ility) {
  65                    this .selectedF acility =  selectedFa cility;
  66           }
  67  
  68  
  69           pu blic Strin g getForma ttedZipCod e() {
  70                    retu rn formatt edZipCode;
  71           }
  72  
  73  
  74           pu blic void  setFormatt edZipCode( String for mattedZipC ode) {
  75                    this .formatted ZipCode =  formattedZ ipCode;
  76           }
  77           pu blic Colle ction<Faci lity> getV isns() {
  78                    retu rn visns;
  79           }
  80           pu blic void  setVisns(C ollection< Facility>  visns) {
  81                    this .visns = v isns;
  82           }
  83           
  84   }