Mercurial > hg > LGServices
comparison src/main/java/de/mpiwg/web/jsp/SessionBean.java @ 41:ba9515f22897
new: topic management and adding sections from searching result into topic
| author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
|---|---|
| date | Thu, 17 Dec 2015 13:44:08 +0100 |
| parents | 37840afb7b80 |
| children | 9dbbbfd474f4 |
comparison
equal
deleted
inserted
replaced
| 40:35ed4e650a53 | 41:ba9515f22897 |
|---|---|
| 31 private CreateFilePage createFilePage = new CreateFilePage(); | 31 private CreateFilePage createFilePage = new CreateFilePage(); |
| 32 private BranchPage branchPage = new BranchPage(); | 32 private BranchPage branchPage = new BranchPage(); |
| 33 | 33 |
| 34 private BooksPage booksPage = new BooksPage(); | 34 private BooksPage booksPage = new BooksPage(); |
| 35 private FullTextSearchPage fullTextSearchPage = new FullTextSearchPage(); | 35 private FullTextSearchPage fullTextSearchPage = new FullTextSearchPage(); |
| 36 | |
| 37 private TopicListPage topicListPage = new TopicListPage(); | |
| 38 private TopicPage topicPage = new TopicPage(); | |
| 36 | 39 |
| 37 public SessionBean(){ | 40 public SessionBean(){ |
| 38 logger.info("\n\n### SessionBean #####\n\n"); | 41 logger.info("\n\n### SessionBean #####\n\n"); |
| 39 } | 42 } |
| 40 | 43 |
| 190 public void setFullTextSearchPage(FullTextSearchPage fullTextSearchPage) { | 193 public void setFullTextSearchPage(FullTextSearchPage fullTextSearchPage) { |
| 191 this.fullTextSearchPage = fullTextSearchPage; | 194 this.fullTextSearchPage = fullTextSearchPage; |
| 192 } | 195 } |
| 193 | 196 |
| 194 | 197 |
| 198 public TopicListPage getTopicListPage() { | |
| 199 return topicListPage; | |
| 200 } | |
| 201 | |
| 202 | |
| 203 public void setTopicListPage(TopicListPage topicListPage) { | |
| 204 this.topicListPage = topicListPage; | |
| 205 } | |
| 206 | |
| 207 | |
| 208 public TopicPage getTopicPage() { | |
| 209 return topicPage; | |
| 210 } | |
| 211 | |
| 212 | |
| 213 public void setTopicPage(TopicPage topicPage) { | |
| 214 this.topicPage = topicPage; | |
| 215 } | |
| 216 | |
| 217 | |
| 195 } | 218 } |
