1 | package edu.iu.uis.sit.portal.portlet.admin.web; |
2 | |
3 | import edu.iu.uis.sit.portal.portlet.admin.domain.PortletApplication; |
4 | import edu.iu.uis.sit.portal.portlet.admin.domain.PortletConfig; |
5 | |
6 | public class WebPortletConfig { |
7 | |
8 | private PortletConfig portletConfig; |
9 | private PortletApplication portletApplication; |
10 | |
11 | public WebPortletConfig() { |
12 | this.portletConfig = new PortletConfig(); |
13 | this.portletApplication = new PortletApplication(); |
14 | } |
15 | |
16 | public WebPortletConfig(PortletConfig portletConfig) { |
17 | this.portletConfig = portletConfig; |
18 | this.portletApplication = new PortletApplication(); |
19 | } |
20 | |
21 | public PortletApplication getPortletApplication() { |
22 | return portletApplication; |
23 | } |
24 | |
25 | public void setPortletApplication(PortletApplication portletApplication) { |
26 | this.portletApplication = portletApplication; |
27 | } |
28 | |
29 | public PortletConfig getPortletConfig() { |
30 | return portletConfig; |
31 | } |
32 | |
33 | public void setPortletConfig(PortletConfig portletConfig) { |
34 | this.portletConfig = portletConfig; |
35 | } |
36 | } |