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

31.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\service IBusinessService.java Thu Dec 14 19:57:16 2017 UTC
2 Genisis_2.0_v7_bld7.zip\TS\Service\bookmarking-service\src\main\java\gov\va\genisis2\bs\service IBusinessService.java Thu Dec 21 21:19:40 2017 UTC

31.2 Comparison summary

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

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

31.4 Active regular expressions

No regular expressions were active.

31.5 Comparison detail

  1   package go v.va.genis is2.bs.ser vice;
  2  
  3   import jav a.util.Lis t;
  4  
  5   import gov .va.genisi s2.ts.comm on.dto.Boo kmarkDTO;
  6   import gov .va.genisi s2.ts.comm on.dto.Lab elDTO;
  7  
  8   /**
  9    * Contrac t for Book mark Servi ce calls
  10    * @author   PII
  11    */
  12   public int erface IBu sinessServ ice {
  13           pu blic List< BookmarkDT O> getBook marks();
  14  
  15           pu blic Bookm arkDTO cre ateBookmar k(Bookmark DTO bookma rkDto);
  16           pu blic void  deleteBook mark(Integ er id);
  17           
  18           pu blic Bookm arkDTO lab elBookmark (LabelDTO  labelDto);
  19           
  20           pu blic Bookm arkDTO unl abelBookma rk(LabelDT O labelDto );
  21           
  22           pu blic List< BookmarkDT O> fetchAl lBookmarks ByUsername (String us ername);
  23  
  24           pu blic List< LabelDTO>  fetchAllLa belsByUser name(Strin g username );
  25  
  26           pu blic List< BookmarkDT O> fetchAl lBookmarks ByLabel(St ring label );
  27           
  28   //      pu blic Bookm arkDTO get Bookmark(I nteger id) ;
  29           
  30   }