public interface BookmarkStore
| Modifier and Type | Method and Description |
|---|---|
BookmarkSet |
createBookmarkSet(String owner,
String name)
Creates a BookmarkSet and stores it in the persistent store.
|
BookmarkSet |
getBookmarkSet(String owner,
String name)
Gets a BookmarkSet for the specified owner and name.
|
void |
removeBookmarkSet(String owner,
String name)
Removes a BookmarkSet from the persistent store.
|
void |
storeBookmarkSet(BookmarkSet bookmarkSet)
Stores a new BookmarkSet or updates an existing BookmarkSet.
|
BookmarkSet getBookmarkSet(String owner, String name)
owner - The owner of the BookmarkSet to retreive.name - The name of the BookmarkSet to retrieve.void storeBookmarkSet(BookmarkSet bookmarkSet)
bookmarkSet - The BookmarkSet to persist.
TODO should this return something?void removeBookmarkSet(String owner, String name)
owner - The owner of the BookmarkSet to remove.name - The name of the BookmarkSet to remove.BookmarkSet createBookmarkSet(String owner, String name)
owner - The owner of the BookmarkSet to create.name - The name of the BookmarkSet to create.Copyright © 2015 Jasig. All Rights Reserved.