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

29.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\repository LabelRepository.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\repository LabelRepository.java Thu Dec 21 21:19:24 2017 UTC

29.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 36
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   package go v.va.genis is2.bs.dat a.reposito ry;
  2  
  3   import jav a.util.Lis t;
  4  
  5   import org .springfra mework.dat a.jpa.repo sitory.Jpa Repository ;
  6   import org .springfra mework.dat a.jpa.repo sitory.Que ry;
  7   import org .springfra mework.dat a.reposito ry.query.P aram;
  8  
  9   import gov .va.genisi s2.bs.data .model.Lab el;
  10  
  11   /**
  12    * JPA Rep ository to  handle La bel Transa ctions
  13    * @author   PII
  14    */
  15   public int erface Lab elReposito ry extends  JpaReposi tory<Label , Integer>  {
  16  
  17           @Q uery("SELE CT l FROM  Label l WH ERE l.user name = :us ername ORD ER BY l.id  DESC")
  18           pu blic List< Label> get AllLabelsG ivenUserna me(@Param( "username" ) String u sername );
  19   }