KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > helper > PortletWindowInternal


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

5
6 /**
7  * Created by The eXo Platform SARL
8  * Author : Mestrallet Benjamin
9  * benjmestrallet@users.sourceforge.net
10  * Date: Jul 29, 2003
11  * Time: 2:10:13 AM
12  */

13 package org.exoplatform.services.portletcontainer.helper;
14
15
16 import java.io.Serializable JavaDoc;
17 import javax.portlet.PortletPreferences;
18 import org.exoplatform.services.portletcontainer.pci.WindowID;
19
20 public class PortletWindowInternal implements Serializable JavaDoc {
21   private PortletPreferences preferences;
22   private WindowID windowID;
23
24   public PortletWindowInternal() {
25   }
26
27   public PortletWindowInternal(WindowID windowID, PortletPreferences preferences) {
28     this.windowID = windowID;
29     this.preferences = preferences;
30   }
31
32   public WindowID getWindowID() {
33     return windowID;
34   }
35
36   public PortletPreferences getPreferences() {
37     return preferences;
38   }
39
40   public void setPreferences(PortletPreferences preferences) {
41     this.preferences = preferences;
42   }
43 }
44
Popular Tags