30. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/20/2017 5:56:04 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.

30.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v6_bld6.zip\Source Code\TS\Service\bookmarking-service\src\main\java\gov\va\genisis2\bs\service IBusinessService.java Thu Dec 14 19:57:19 2017 UTC
2 Genisis_2.0_v6_bld6.zip\Source Code\TS\Service\bookmarking-service\src\main\java\gov\va\genisis2\bs\service IBusinessService.java Wed Dec 20 20:13:44 2017 UTC

30.2 Comparison summary

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

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

30.4 Active regular expressions

No regular expressions were active.

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