138. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:23 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.

138.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\model UserPreference.java Fri Dec 7 17:36:18 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\model UserPreference.java Wed Dec 12 22:33:38 2018 UTC

138.2 Comparison summary

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

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

138.4 Active regular expressions

No regular expressions were active.

138.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   }