29. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:08 AM 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.

29.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\model UserPreference.java Wed May 29 15:26:00 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\model UserPreference.java Mon Jun 10 19:19:21 2019 UTC

29.2 Comparison summary

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

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

29.4 Active regular expressions

No regular expressions were active.

29.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.c cht.model;
  5  
  6   import jav ax.persist ence.Colum n;
  7   import jav ax.persist ence.Entit y;
  8   import jav ax.persist ence.Gener atedValue;
  9   import jav ax.persist ence.Gener ationType;
  10   import jav ax.persist ence.Id;
  11   import jav ax.persist ence.JoinC olumn;
  12   import jav ax.persist ence.ManyT oOne;
  13   import jav ax.persist ence.Table ;
  14  
  15   /**
  16    * @author   DNS
  17    *
  18    */
  19   @Entity
  20   @Table(sch ema="ht",  name="USER _PREFERENC E")
  21   public cla ss UserPre ference ex tends CCHT AuditField s {
  22  
  23           pu blic stati c final lo ng serialV ersionUID  = -1372518 6513098694 16L;
  24           pu blic stati c final St ring MULTI PLE_WINDOW S = "Multi ple Window s";
  25           pu blic stati c final St ring MAX_O PEN_WINDOW S = "Maxim um Open Wi ndows";
  26           pu blic stati c final St ring APP_W INDOW_HEIG HT = "Appl ication Wi ndow Heigh t";
  27           pu blic stati c final St ring APP_W INDOW_WIDT H = "Appli cation Win dow Width" ;
  28                    
  29           pr ivate Long  id;
  30           pr ivate User  user;
  31           pr ivate Stri ng name;
  32           pr ivate Stri ng value;
  33           
  34           @I d
  35           @G eneratedVa lue(strate gy = Gener ationType. IDENTITY)
  36           @C olumn(name  = "USER_P REFERENCE_ ID", uniqu e = true,  nullable =  false)
  37           pu blic Long  getId() {
  38                    retu rn id;
  39           }
  40  
  41           pu blic void  setId(Long  id) {
  42                    this .id = id;
  43           }
  44           
  45           @M anyToOne
  46           @J oinColumn( name="APP_ USER_ID")
  47           pu blic User  getUser()  {
  48                    retu rn user;
  49           }
  50           pu blic void  setUser(Us er user) {
  51                    this .user = us er;
  52           }
  53           
  54           @C olumn(name ="NAME")
  55           pu blic Strin g getName( ) {
  56                    retu rn name;
  57           }
  58           pu blic void  setName(St ring name)  {
  59                    this .name = na me;
  60           }
  61           
  62           @C olumn(name ="PREF_VAL UE")
  63           pu blic Strin g getValue () {
  64                    retu rn value;
  65           }
  66           pu blic void  setValue(S tring valu e) {
  67                    this .value = v alue;
  68           }        
  69   }