1 5 6 13 package org.exoplatform.services.portletcontainer.helper; 14 15 16 import java.io.Serializable ; 17 import javax.portlet.PortletPreferences; 18 import org.exoplatform.services.portletcontainer.pci.WindowID; 19 20 public class PortletWindowInternal implements Serializable { 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 |