44467. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 8/1/2019 1:42:43 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.

44467.1 Files compared

# Location File Last Modified
1 JLV_2_8_0_0_0_July_2019.zip\JLV_2_8_0_0_0_July_2019\jMeadows\src\main\java\gov\va\med\jmeadows\dao\beans IehrUserProfile.java Mon Jul 8 18:58:48 2019 UTC
2 JLV_2_8_0_0_0_July_2019.zip\JLV_2_8_0_0_0_July_2019\jMeadows\src\main\java\gov\va\med\jmeadows\dao\beans IehrUserProfile.java Wed Jul 31 23:50:15 2019 UTC

44467.2 Comparison summary

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

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

44467.4 Active regular expressions

No regular expressions were active.

44467.5 Comparison detail

  1   /*
  2    * Janus 4 .0 (c)
  3    * Copyrig ht (c) 201 2 Hawaii R esource Gr oup LLC. A ll Rights  Reserved.
  4    * Develop ed for the  Pacific T elehealth  & Technolo gy Hui and  the Pacif ic Joint I nformation  Technolog y Center
  5    * Contrib utors:
  6    *      Ho norable Se nator Dani el K. Inou ye
  7    *      VA  Pacific I slands Hea lth Care S ystem
  8    *      Tr ipler Army  Medical C enter
  9    */
  10  
  11   package go v.va.med.j meadows.da o.beans;
  12  
  13   import jav a.io.Seria lizable;
  14  
  15   /**
  16    * Created  with Inte lliJ IDEA.
  17    * User:  DNS
  18    * Date: 9 /7/12
  19    * Time: 1 0:34 AM
  20    * To chan ge this te mplate use  File | Se ttings | F ile Templa tes.
  21    */
  22   public cla ss IehrUse rProfile i mplements  Serializab le {
  23       /**
  24        * Cla ss UID.
  25        */
  26       privat e static f inal long  serialVers ionUID = - 3708821996 323589347L ;
  27       
  28       privat e String   locID;
  29       privat e String   dbUserID;
  30       privat e String   cfg;
  31       privat e String   flags;
  32       privat e String   smartCardI D;
  33       privat e String   smartCardA gency;
  34       privat e String   emailAddre ss;
  35       privat e String   subjectDN;
  36  
  37       public  String ge tLocID() {
  38           re turn locID ;
  39       }
  40  
  41       public  void setL ocID(Strin g locID) {
  42           th is.locID =  locID;
  43       }
  44  
  45       public  String ge tSubjectDN () {
  46           re turn subje ctDN;
  47       }
  48  
  49       public  void setS ubjectDN(S tring subj ectDN) {
  50           th is.subject DN = subje ctDN;
  51       }
  52  
  53       public  String ge tDbUserID( ) {
  54           re turn dbUse rID;
  55       }
  56  
  57       public  void setD bUserID(St ring dbUse rID) {
  58           th is.dbUserI D = dbUser ID;
  59       }
  60  
  61       public  String ge tCfg() {
  62           re turn cfg;
  63       }
  64  
  65       public  void setC fg(String  cfg) {
  66           th is.cfg = c fg;
  67       }
  68  
  69       public  String ge tFlags() {
  70           re turn flags ;
  71       }
  72  
  73       public  void setF lags(Strin g flags) {
  74           th is.flags =  flags;
  75       }
  76  
  77       public  String ge tSmartCard ID() {
  78           re turn smart CardID;
  79       }
  80  
  81       public  void setS martCardID (String sm artCardID)  {
  82           th is.smartCa rdID = sma rtCardID;
  83       }
  84  
  85       public  String ge tSmartCard Agency() {
  86           re turn smart CardAgency ;
  87       }
  88  
  89       public  void setS martCardAg ency(Strin g smartCar dAgency) {
  90           th is.smartCa rdAgency =  smartCard Agency;
  91       }
  92  
  93       public  String ge tEmailAddr ess() {
  94           re turn email Address;
  95       }
  96  
  97       public  void setE mailAddres s(String e mailAddres s) {
  98           th is.emailAd dress = em ailAddress ;
  99       }
  100   }