1 | package edu.iu.uis.sit.portal.portlet.admin.domain; |
2 | |
3 | import java.io.Serializable; |
4 | |
5 | public class PortletConfig implements Serializable { |
6 | private Long portletConfigId; |
7 | private String portletName; |
8 | private Long lockingNumber; |
9 | |
10 | private Long portletApplicationId; |
11 | private PortletApplication portletApplication; |
12 | |
13 | public Long getLockingNumber() { |
14 | return lockingNumber; |
15 | } |
16 | public void setLockingNumber(Long lockingNumber) { |
17 | this.lockingNumber = lockingNumber; |
18 | } |
19 | public PortletApplication getPortletApplication() { |
20 | return portletApplication; |
21 | } |
22 | public void setPortletApplication(PortletApplication portletApplication) { |
23 | this.portletApplication = portletApplication; |
24 | } |
25 | public Long getPortletApplicationId() { |
26 | return portletApplicationId; |
27 | } |
28 | public void setPortletApplicationId(Long portletApplicationId) { |
29 | this.portletApplicationId = portletApplicationId; |
30 | } |
31 | public Long getPortletConfigId() { |
32 | return portletConfigId; |
33 | } |
34 | public void setPortletConfigId(Long portletConfigId) { |
35 | this.portletConfigId = portletConfigId; |
36 | } |
37 | public String getPortletName() { |
38 | return portletName; |
39 | } |
40 | public void setPortletName(String portletName) { |
41 | this.portletName = portletName; |
42 | } |
43 | } |