1 | package edu.iu.uis.sit.portal.portlet.admin.domain; |
2 | |
3 | import java.io.Serializable; |
4 | |
5 | public class PortalSupport implements Serializable { |
6 | private Long portalSupportId; |
7 | private String supportName; |
8 | private String supportType; |
9 | private Long lockingNumber; |
10 | |
11 | private Long portalConfigId; |
12 | private PortalConfig portalConfig; |
13 | |
14 | public Long getLockingNumber() { |
15 | return lockingNumber; |
16 | } |
17 | public void setLockingNumber(Long lockingNumber) { |
18 | this.lockingNumber = lockingNumber; |
19 | } |
20 | public PortalConfig getPortalConfig() { |
21 | return portalConfig; |
22 | } |
23 | public void setPortalConfig(PortalConfig portalConfig) { |
24 | this.portalConfig = portalConfig; |
25 | } |
26 | public Long getPortalConfigId() { |
27 | return portalConfigId; |
28 | } |
29 | public void setPortalConfigId(Long portalConfigId) { |
30 | this.portalConfigId = portalConfigId; |
31 | } |
32 | public Long getPortalSupportId() { |
33 | return portalSupportId; |
34 | } |
35 | public void setPortalSupportId(Long portalSupportId) { |
36 | this.portalSupportId = portalSupportId; |
37 | } |
38 | public String getSupportName() { |
39 | return supportName; |
40 | } |
41 | public void setSupportName(String supportName) { |
42 | this.supportName = supportName; |
43 | } |
44 | public String getSupportType() { |
45 | return supportType; |
46 | } |
47 | public void setSupportType(String supportType) { |
48 | this.supportType = supportType; |
49 | } |
50 | |
51 | } |