1 | package edu.iu.uis.sit.portal.portlet.admin.domain; |
2 | |
3 | import java.io.Serializable; |
4 | import java.util.Collection; |
5 | |
6 | public class PortalConfig implements Serializable { |
7 | private Long portalConfigId; |
8 | private String portalName; |
9 | private String portalVersion; |
10 | private String containerName; |
11 | private Long lockingNumber; |
12 | |
13 | private Collection portalSupports; |
14 | private Collection portletApplications; |
15 | |
16 | |
17 | public String getContainerName() { |
18 | return containerName; |
19 | } |
20 | public void setContainerName(String containerName) { |
21 | this.containerName = containerName; |
22 | } |
23 | public Long getLockingNumber() { |
24 | return lockingNumber; |
25 | } |
26 | public void setLockingNumber(Long lockingNumber) { |
27 | this.lockingNumber = lockingNumber; |
28 | } |
29 | public Long getPortalConfigId() { |
30 | return portalConfigId; |
31 | } |
32 | public void setPortalConfigId(Long portalConfigId) { |
33 | this.portalConfigId = portalConfigId; |
34 | } |
35 | public String getPortalName() { |
36 | return portalName; |
37 | } |
38 | public void setPortalName(String portalName) { |
39 | this.portalName = portalName; |
40 | } |
41 | public Collection getPortalSupports() { |
42 | return portalSupports; |
43 | } |
44 | public void setPortalSupports(Collection portalSupports) { |
45 | this.portalSupports = portalSupports; |
46 | } |
47 | public String getPortalVersion() { |
48 | return portalVersion; |
49 | } |
50 | public void setPortalVersion(String portalVersion) { |
51 | this.portalVersion = portalVersion; |
52 | } |
53 | public Collection getPortletApplications() { |
54 | return portletApplications; |
55 | } |
56 | public void setPortletApplications(Collection portletApplications) { |
57 | this.portletApplications = portletApplications; |
58 | } |
59 | } |