View Javadoc

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