diff 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
line wrap: on
line diff
--- a/src/main/java/de/mpiwg/web/jsp/SessionBean.java	Mon Dec 07 17:06:57 2015 +0100
+++ b/src/main/java/de/mpiwg/web/jsp/SessionBean.java	Thu Dec 17 13:44:08 2015 +0100
@@ -33,6 +33,9 @@
 	
 	private BooksPage booksPage = new BooksPage();
 	private FullTextSearchPage fullTextSearchPage = new FullTextSearchPage();
+
+	private TopicListPage topicListPage = new TopicListPage();
+	private TopicPage topicPage = new TopicPage();
 	
 	public SessionBean(){
 		logger.info("\n\n### SessionBean #####\n\n");
@@ -192,4 +195,24 @@
 	}
 
 
+	public TopicListPage getTopicListPage() {
+		return topicListPage;
+	}
+
+
+	public void setTopicListPage(TopicListPage topicListPage) {
+		this.topicListPage = topicListPage;
+	}
+
+
+	public TopicPage getTopicPage() {
+		return topicPage;
+	}
+
+
+	public void setTopicPage(TopicPage topicPage) {
+		this.topicPage = topicPage;
+	}
+
+
 }