22456. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/2/2019 9:48:59 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.

22456.1 Files compared

# Location File Last Modified
1 JLV_JLV 2_7_2_0_0.zip\JLV_Src\jMeadows\src\main\java\gov\va\med\jmeadows\dao\beans AuditEntry.java Wed Mar 20 21:43:46 2019 UTC
2 JLV_JLV 2_7_2_0_0.zip\JLV_Src\jMeadows\src\main\java\gov\va\med\jmeadows\dao\beans AuditEntry.java Tue Apr 2 13:35:48 2019 UTC

22456.2 Comparison summary

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

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

22456.4 Active regular expressions

No regular expressions were active.

22456.5 Comparison detail

  1   /*
  2    * Janus 4 .0 (c)
  3    * Copyrig ht (c) 201 3 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 j ava.util.C alendar;
  14   import jav a.util.Dat e;
  15  
  16   /**
  17    * Created  with Inte lliJ IDEA.
  18    * User:  DNS
  19    * Date: 7 /23/13
  20    * Time: 9 :49 AM
  21    * To chan ge this te mplate use  File | Se ttings | F ile Templa tes.
  22    */
  23   public cla ss AuditEn try {
  24  
  25       privat e String a uditID;
  26       privat e Date ent ryDate;
  27       privat e Date sta rtDate;
  28       privat e Date end Date;
  29       privat e String s ystemID;
  30       privat e String u serID;
  31       privat e String u serNPI;
  32       privat e String u serName;
  33       privat e String p atID;
  34       privat e String c ategory;
  35       privat e String q ueryType;
  36       privat e String c ardID;
  37       privat e String i pAddress;
  38  
  39       public  String ge tAuditID()  {
  40           re turn audit ID;
  41       }
  42  
  43       public  void setA uditID(Str ing auditI D) {
  44           th is.auditID  = auditID ;
  45       }
  46  
  47       public  Date getE ntryDate()  {
  48           Da te rtc = n ull;
  49           if  (entryDat e != null)  {
  50                rtc = (D ate) entry Date.clone ();
  51           }
  52           re turn rtc;
  53       }
  54  
  55       public  void setE ntryDate(D ate entryD ate) {
  56           if  (entryDat e == null)  {
  57                this.ent ryDate = n ull;
  58           }  else {
  59                this.ent ryDate = ( Date) entr yDate.clon e();
  60           }
  61       }
  62  
  63       public  Date getS tartDate()  {
  64           Da te rtc = n ull;
  65           if  (startDat e != null)  {
  66                rtc = (D ate) start Date.clone ();
  67           }
  68           re turn rtc;
  69       }
  70  
  71       public  void setS tartDate(D ate startD ate) {
  72           if  (startDat e == null)  {
  73                this.sta rtDate = n ull;
  74           }  else {
  75                this.sta rtDate = ( Date) star tDate.clon e();
  76           }
  77       }
  78  
  79       public  Date getE ndDate() {
  80           Da te rtc = n ull;
  81           if  (endDate  != null) {
  82                rtc = (D ate) endDa te.clone() ;
  83           }
  84           re turn rtc;
  85       }
  86  
  87       public  void setE ndDate(Dat e endDate)  {
  88           if  (endDate  == null) {
  89                this.end Date = nul l;
  90           }  else {
  91                this.end Date = (Da te) endDat e.clone();
  92           }
  93       }
  94  
  95       public  String ge tSystemID( ) {
  96           re turn syste mID;
  97       }
  98  
  99       public  void setS ystemID(St ring syste mID) {
  100           th is.systemI D = system ID;
  101       }
  102  
  103       public  String ge tUserID()  {
  104           re turn userI D;
  105       }
  106  
  107       public  void setU serID(Stri ng userID)  {
  108           th is.userID  = userID;
  109       }
  110  
  111       public  String ge tUserNPI()  {
  112           re turn userN PI;
  113       }
  114  
  115       public  void setU serNPI(Str ing userNP I) {
  116           th is.userNPI  = userNPI ;
  117       }
  118  
  119       public  String ge tUserName( ) {
  120           re turn userN ame;
  121       }
  122  
  123       public  void setU serName(St ring userN ame) {
  124           th is.userNam e = userNa me;
  125       }
  126  
  127       public  String ge tPatID() {
  128           re turn patID ;
  129       }
  130  
  131       public  void setP atID(Strin g patID) {
  132           th is.patID =  patID;
  133       }
  134  
  135       public  String ge tCategory( ) {
  136           re turn categ ory;
  137       }
  138  
  139       public  void setC ategory(St ring categ ory) {
  140           th is.categor y = catego ry;
  141       }
  142  
  143       public  String ge tQueryType () {
  144           re turn query Type;
  145       }
  146  
  147       public  void setQ ueryType(S tring quer yType) {
  148           th is.queryTy pe = query Type;
  149       }
  150  
  151       public  String ge tCardID()  {
  152           re turn cardI D;
  153       }
  154  
  155       public  void setC ardID(Stri ng cardID)  {
  156           th is.cardID  = cardID;
  157       }
  158  
  159       public  String ge tIpAddress () {
  160           re turn ipAdd ress;
  161       }
  162  
  163       public  void setI pAddress(S tring ipAd dress) {
  164           th is.ipAddre ss = ipAdd ress;
  165       }
  166  
  167  
  168   }