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 PortletApplication implements Serializable { |
7 | private Long portletApplicationId; |
8 | private String contextPath; |
9 | private Long lockingNumber; |
10 | |
11 | private Long portalConfigId; |
12 | private PortalConfig portalConfig; |
13 | |
14 | private Collection portletConfigs; |
15 | |
16 | public String getContextPath() { |
17 | return contextPath; |
18 | } |
19 | |
20 | public void setContextPath(String contextPath) { |
21 | this.contextPath = contextPath; |
22 | } |
23 | |
24 | public Long getLockingNumber() { |
25 | return lockingNumber; |
26 | } |
27 | |
28 | public void setLockingNumber(Long lockingNumber) { |
29 | this.lockingNumber = lockingNumber; |
30 | } |
31 | |
32 | public PortalConfig getPortalConfig() { |
33 | return portalConfig; |
34 | } |
35 | |
36 | public void setPortalConfig(PortalConfig portalConfig) { |
37 | this.portalConfig = portalConfig; |
38 | } |
39 | |
40 | public Long getPortalConfigId() { |
41 | return portalConfigId; |
42 | } |
43 | |
44 | public void setPortalConfigId(Long portalConfigId) { |
45 | this.portalConfigId = portalConfigId; |
46 | } |
47 | |
48 | |
49 | public Long getPortletApplicationId() { |
50 | return portletApplicationId; |
51 | } |
52 | |
53 | public void setPortletApplicationId(Long portletApplicationId) { |
54 | this.portletApplicationId = portletApplicationId; |
55 | } |
56 | |
57 | public Collection getPortletConfigs() { |
58 | return portletConfigs; |
59 | } |
60 | |
61 | public void setPortletConfigs(Collection portletConfigs) { |
62 | this.portletConfigs = portletConfigs; |
63 | } |
64 | } |