1 package com.germinus.merlin.page;
2
3 public class PagePortletConfiguration {
4
5 private String column1;
6 private String column2;
7 private String column3;
8 private String layoutTemplate;
9 private String description;
10 private String friendlyURL;
11 private boolean isHidden;
12 private String title;
13 private String type;
14 private String name;
15 private boolean privateLayout;
16
17
18
19
20 public String getColumn1() {
21 return column1;
22 }
23
24
25
26 public void setColumn1(String column1) {
27 this.column1 = column1;
28 }
29
30
31
32 public String getColumn2() {
33 return column2;
34 }
35
36
37
38 public void setColumn2(String column2) {
39 this.column2 = column2;
40 }
41
42
43
44 public String getColumn3() {
45 return column3;
46 }
47
48
49
50 public void setColumn3(String column3) {
51 this.column3 = column3;
52 }
53
54
55
56 public String getLayoutTemplate() {
57 return layoutTemplate;
58 }
59
60
61
62 public void setLayoutTemplate(String layoutTemplate) {
63 this.layoutTemplate = layoutTemplate;
64 }
65
66
67
68
69 public String getDescription() {
70 return description;
71 }
72
73
74
75
76 public String getFriendlyURL() {
77 return friendlyURL;
78 }
79
80
81
82
83 public String getName() {
84 return name;
85 }
86
87
88
89
90 public String getTitle() {
91 return title;
92 }
93
94
95
96
97 public String getType() {
98 return type;
99 }
100
101
102
103
104 public boolean isHidden() {
105 return isHidden;
106 }
107
108
109
110
111 public boolean isPrivateLayout() {
112 return privateLayout;
113 }
114
115
116
117
118 public void setDescription(String description) {
119 this.description = description;
120 }
121
122
123
124
125 public void setFriendlyURL(String friendlyURL) {
126 this.friendlyURL = friendlyURL;
127 }
128
129
130
131
132 public void setHidden(boolean isHidden) {
133 this.isHidden = isHidden;
134 }
135
136
137
138
139 public void setName(String name) {
140 this.name = name;
141 }
142
143
144
145
146 public void setPrivateLayout(boolean privateLayout) {
147 this.privateLayout = privateLayout;
148 }
149
150
151
152
153 public void setTitle(String title) {
154 this.title = title;
155 }
156
157
158
159
160 public void setType(String type) {
161 this.type = type;
162 }
163 }