1 | package edu.iu.uis.sit.portal.portlet.admin.web; |
2 | |
3 | import edu.iu.uis.sit.portal.portlet.publishing.domain.Fragment; |
4 | import edu.iu.uis.sit.portal.portlet.publishing.domain.Tab; |
5 | |
6 | public class WebPublishingAcl { |
7 | |
8 | private Long id; |
9 | private String type; |
10 | private String name; |
11 | private Fragment fragment; |
12 | private Tab tab; |
13 | private String aclExpression; |
14 | private String aclExpressionHtml; |
15 | |
16 | public WebPublishingAcl() { |
17 | } |
18 | |
19 | public WebPublishingAcl(Fragment fragment) { |
20 | this.fragment = fragment; |
21 | } |
22 | |
23 | public WebPublishingAcl(Tab tab) { |
24 | this.tab = tab; |
25 | } |
26 | |
27 | public Fragment getFragment() { |
28 | return fragment; |
29 | } |
30 | |
31 | public void setFragment(Fragment fragment) { |
32 | this.fragment = fragment; |
33 | } |
34 | |
35 | public Tab getTab() { |
36 | return tab; |
37 | } |
38 | |
39 | public void setTab(Tab tab) { |
40 | this.tab = tab; |
41 | } |
42 | |
43 | public String getAclExpression() { |
44 | return aclExpression; |
45 | } |
46 | |
47 | public void setAclExpression(String aclExpression) { |
48 | this.aclExpression = aclExpression; |
49 | } |
50 | |
51 | public String getAclExpressionHtml() { |
52 | return aclExpressionHtml; |
53 | } |
54 | |
55 | public void setAclExpressionHtml(String aclExpressionHtml) { |
56 | this.aclExpressionHtml = aclExpressionHtml; |
57 | } |
58 | |
59 | public Long getId() { |
60 | return id; |
61 | } |
62 | |
63 | public void setId(Long id) { |
64 | this.id = id; |
65 | } |
66 | |
67 | public String getType() { |
68 | return type; |
69 | } |
70 | |
71 | public void setType(String type) { |
72 | this.type = type; |
73 | } |
74 | |
75 | public String getName() { |
76 | return name; |
77 | } |
78 | |
79 | public void setName(String name) { |
80 | this.name = name; |
81 | } |
82 | |
83 | } |