KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > wsrp > consumer > adapters > PortletWindowSessionAdapter


1 /*
2 * Copyright 2001-2004 The eXo platform SARL All rights reserved.
3 * Please look at license.txt in info directory for more license detail.
4 */

5
6 package org.exoplatform.services.wsrp.consumer.adapters;
7
8 import org.exoplatform.services.wsrp.consumer.PortletSession;
9 import org.exoplatform.services.wsrp.consumer.PortletWindowSession;
10 import org.exoplatform.services.wsrp.type.MarkupContext;
11
12 /*
13  * @author Mestrallet Benjamin
14  * benjmestrallet@users.sourceforge.net
15  * Date: 9 févr. 2004
16  * Time: 15:49:27
17  */

18
19 public class PortletWindowSessionAdapter implements PortletWindowSession{
20
21   private String JavaDoc windowID;
22   private PortletSession portletSession;
23   private MarkupContext markupContext;
24   private String JavaDoc navigationalState;
25
26   public String JavaDoc getWindowID() {
27     return windowID;
28   }
29
30   public void setWindowID(String JavaDoc windowID) {
31     this.windowID = windowID;
32   }
33
34   public MarkupContext getCachedMarkup() {
35     return markupContext;
36   }
37
38   public void updateMarkupCache(MarkupContext markupContext) {
39     this.markupContext = markupContext;
40   }
41
42   public PortletSession getPortletSession() {
43     return portletSession;
44   }
45
46   public void setPortletSession(PortletSession portletSession) {
47     this.portletSession = portletSession;
48   }
49
50   public MarkupContext getMarkupContext() {
51     return markupContext;
52   }
53
54   public void setMarkupContext(MarkupContext markupContext) {
55     this.markupContext = markupContext;
56   }
57
58   public String JavaDoc getNavigationalState() {
59     return navigationalState;
60   }
61
62   public void setNavigationalState(String JavaDoc navigationalState) {
63     this.navigationalState = navigationalState;
64   }
65
66
67 }
Popular Tags