1 | package edu.iu.uis.sit.portal.portlet.admin.web; |
2 | |
3 | import edu.iu.uis.sit.portal.portlet.admin.domain.PortalConfig; |
4 | import edu.iu.uis.sit.portal.portlet.admin.domain.PortalSupport; |
5 | import edu.iu.uis.sit.portal.portlet.admin.domain.PortletApplication; |
6 | |
7 | public class WebPortalConfig { |
8 | |
9 | private PortalConfig portalConfig; |
10 | private PortalSupport portalSupport; |
11 | private PortletApplication portletApplication; |
12 | |
13 | public WebPortalConfig() { |
14 | this.portalConfig = new PortalConfig(); |
15 | this.portalSupport = new PortalSupport(); |
16 | this.portletApplication = new PortletApplication(); |
17 | } |
18 | |
19 | public WebPortalConfig(PortalConfig portalConfig) { |
20 | this.portalConfig = portalConfig; |
21 | this.portalSupport = new PortalSupport(); |
22 | this.portletApplication = new PortletApplication(); |
23 | } |
24 | |
25 | public PortalConfig getPortalConfig() { |
26 | return portalConfig; |
27 | } |
28 | |
29 | public void setPortalConfig(PortalConfig portalConfig) { |
30 | this.portalConfig = portalConfig; |
31 | } |
32 | |
33 | public PortalSupport getPortalSupport() { |
34 | return portalSupport; |
35 | } |
36 | |
37 | public void setPortalSupport(PortalSupport portalSupport) { |
38 | this.portalSupport = portalSupport; |
39 | } |
40 | |
41 | public PortletApplication getPortletApplication() { |
42 | return portletApplication; |
43 | } |
44 | |
45 | public void setPortletApplication(PortletApplication portletApplication) { |
46 | this.portletApplication = portletApplication; |
47 | } |
48 | } |