Mercurial > hg > LGServices
diff src/main/java/de/mpiwg/web/jsp/SessionBean.java @ 39:37840afb7b80
new: full text search
| author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
|---|---|
| date | Fri, 04 Dec 2015 14:28:44 +0100 |
| parents | c8d367a4bbcd |
| children | ba9515f22897 |
line wrap: on
line diff
--- a/src/main/java/de/mpiwg/web/jsp/SessionBean.java Fri Nov 20 15:37:04 2015 +0100 +++ b/src/main/java/de/mpiwg/web/jsp/SessionBean.java Fri Dec 04 14:28:44 2015 +0100 @@ -32,7 +32,7 @@ private BranchPage branchPage = new BranchPage(); private BooksPage booksPage = new BooksPage(); - + private FullTextSearchPage fullTextSearchPage = new FullTextSearchPage(); public SessionBean(){ logger.info("\n\n### SessionBean #####\n\n"); @@ -180,6 +180,16 @@ public void setBranchPage(BranchPage branchPage) { this.branchPage = branchPage; } - - + + + public FullTextSearchPage getFullTextSearchPage() { + return fullTextSearchPage; + } + + + public void setFullTextSearchPage(FullTextSearchPage fullTextSearchPage) { + this.fullTextSearchPage = fullTextSearchPage; + } + + }
