27. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/21/2017 6:15:13 PM 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.

27.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v7_bld7.zip\TS\Service\bookmarking-service\src\main\java\gov\va\genisis2\bs\data\model Label.java Thu Dec 14 19:57:17 2017 UTC
2 Genisis_2.0_v7_bld7.zip\TS\Service\bookmarking-service\src\main\java\gov\va\genisis2\bs\data\model Label.java Thu Dec 21 21:17:45 2017 UTC

27.2 Comparison summary

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

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

27.4 Active regular expressions

No regular expressions were active.

27.5 Comparison detail

  1   package go v.va.genis is2.bs.dat a.model;
  2  
  3   import jav a.io.Seria lizable;
  4  
  5   import jav ax.persist ence.Colum n;
  6   import jav ax.persist ence.Entit y;
  7   import jav ax.persist ence.Fetch Type;
  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    * Label -  Stores da ta associa ted with a  label
  17    * @author   PII
  18    */
  19   @Entity
  20   @Table(nam e = "label s")
  21   public cla ss Label i mplements  Serializab le {
  22  
  23           pr ivate stat ic final l ong serial VersionUID  = 1L;
  24  
  25           @I d
  26           @C olumn(name  = "id")
  27           @G eneratedVa lue(strate gy = Gener ationType. AUTO)
  28           pr ivate int  labelId;
  29           
  30           @C olumn(name  = "bookma rk_id", in sertable =  false, up datable =  false)
  31           pr ivate int  bookmarkId ;
  32  
  33           @M anyToOne(f etch = Fet chType.EAG ER)
  34           @J oinColumn( name = "bo okmark_id"  )
  35           pr ivate Book mark bookm ark;
  36           
  37           @C olumn(name  = "name")
  38           pr ivate Stri ng name;
  39           
  40           @C olumn(name  = "create d_by")
  41           pr ivate Stri ng usernam e;
  42  
  43           /* *
  44            *  @return t he labelId
  45            * /
  46           pu blic int g etLabelId( ) {
  47                    retu rn labelId ;
  48           }
  49  
  50           /* *
  51            *  @param la belId the  labelId to  set
  52            * /
  53           pu blic void  setLabelId (int label Id) {
  54                    this .labelId =  labelId;
  55           }
  56  
  57           /* *
  58            *  @return t he bookmar kId
  59            * /
  60           pu blic int g etBookmark Id() {
  61                    retu rn bookmar kId;
  62           }
  63  
  64           /* *
  65            *  @param bo okmarkId t he bookmar kId to set
  66            * /
  67           pu blic void  setBookmar kId(int bo okmarkId)  {
  68                    this .bookmarkI d = bookma rkId;
  69           }
  70  
  71           /* *
  72            *  @return t he bookmar k
  73            * /
  74           pu blic Bookm ark getBoo kmark() {
  75                    retu rn bookmar k;
  76           }
  77  
  78           /* *
  79            *  @param bo okmark the  bookmark  to set
  80            * /
  81           pu blic void  setBookmar k(Bookmark  bookmark)  {
  82                    this .bookmark  = bookmark ;
  83           }
  84  
  85           /* *
  86            *  @return t he name
  87            * /
  88           pu blic Strin g getName( ) {
  89                    retu rn name;
  90           }
  91  
  92           /* *
  93            *  @param na me the nam e to set
  94            * /
  95           pu blic void  setName(St ring name)  {
  96                    this .name = na me;
  97           }
  98  
  99           /* *
  100            *  @return t he usernam e
  101            * /
  102           pu blic Strin g getUsern ame() {
  103                    retu rn usernam e;
  104           }
  105  
  106           /* *
  107            *  @param us ername the  username  to set
  108            * /
  109           pu blic void  setUsernam e(String u sername) {
  110                    this .username  = username ;
  111           }
  112   }