KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > struts > ConfigureForm


1 package org.jahia.clipbuilder.html.struts;
2
3 import org.apache.struts.action.*;
4 import org.jahia.clipbuilder.html.bean.*;
5 import org.jahia.clipbuilder.html.util.*;
6
7 /**
8  * Description of the Class
9  *
10  *@author Tlili Khaled
11  */

12 public class ConfigureForm extends ActionForm implements ConfigureInterface {
13     private String JavaDoc proxy;
14     private String JavaDoc enableSSL;
15     private String JavaDoc enableJavascript;
16     private String JavaDoc client;
17     private String JavaDoc htmlDocument;
18     private String JavaDoc enableCSS;
19     private String JavaDoc browserJavascriptEvent;
20     private String JavaDoc browserJavascriptCode;
21     private String JavaDoc portletEnableSSL;
22     private String JavaDoc portletContinualClipping;
23     private String JavaDoc portletCacheExpiration;
24     private String JavaDoc portletCacheContext;
25     private static org.apache.log4j.Logger logger = org.apache.log4j.Logger.getLogger(ConfigureForm.class);
26
27
28     /**
29      * Sets the HtmlDocument attribute of the ConfigureForm object
30      *
31      *@param htmlDocument The new HtmlDocument value
32      */

33     public void setHtmlDocument(String JavaDoc htmlDocument) {
34         this.htmlDocument = htmlDocument;
35     }
36
37
38     /**
39      * Sets the Proxy attribute of the ConfigureForm object
40      *
41      *@param proxy The new Proxy value
42      */

43     public void setProxy(String JavaDoc proxy) {
44         this.proxy = proxy;
45     }
46
47
48     /**
49      * Sets the Client attribute of the ConfigureForm object
50      *
51      *@param client The new Client value
52      */

53     public void setClient(String JavaDoc client) {
54         this.client = client;
55     }
56
57
58     /**
59      * Sets the EnableSSL attribute of the ConfigureForm object
60      *
61      *@param enableSSL The new EnableSSL value
62      */

63     public void setEnableSSL(String JavaDoc enableSSL) {
64         this.enableSSL = enableSSL;
65     }
66
67
68     /**
69      * Sets the EnableJavascript attribute of the ConfigureForm object
70      *
71      *@param enableJavascript The new EnableJavascript value
72      */

73     public void setEnableJavascript(String JavaDoc enableJavascript) {
74         this.enableJavascript = enableJavascript;
75     }
76
77
78     /**
79      * Sets the EnableCSS attribute of the ConfigureForm object
80      *
81      *@param enableCSS The new EnableCSS value
82      */

83     public void setEnableCSS(String JavaDoc enableCSS) {
84         this.enableCSS = enableCSS;
85     }
86
87
88     /**
89      * Sets the BrowserJavascriptCode attribute of the ConfigureForm object
90      *
91      *@param browserJavascriptCode The new BrowserJavascriptCode value
92      */

93     public void setBrowserJavascriptCode(String JavaDoc browserJavascriptCode) {
94         this.browserJavascriptCode = browserJavascriptCode;
95     }
96
97
98     /**
99      * Sets the BrowserJavascriptEvent attribute of the ConfigureForm object
100      *
101      *@param browserJavascriptEvent The new BrowserJavascriptEvent value
102      */

103     public void setBrowserJavascriptEvent(String JavaDoc browserJavascriptEvent) {
104         this.browserJavascriptEvent = browserJavascriptEvent;
105     }
106
107
108     /**
109      * Sets the PortletContinualClipping attribute of the ConfigureForm object
110      *
111      *@param portletContinualClipping The new PortletContinualClipping value
112      */

113     public void setPortletContinualClipping(String JavaDoc portletContinualClipping) {
114         this.portletContinualClipping = portletContinualClipping;
115     }
116
117
118     /**
119      * Sets the PortletEnableSSL attribute of the ConfigureForm object
120      *
121      *@param portletEnableSSL The new PortletEnableSSL value
122      */

123     public void setPortletEnableSSL(String JavaDoc portletEnableSSL) {
124         this.portletEnableSSL = portletEnableSSL;
125     }
126
127
128     /**
129      * Sets the PortletCacheExpiration attribute of the ConfigureForm object
130      *
131      *@param portletCacheExpiration The new PortletCacheExpiration value
132      */

133     public void setPortletCacheExpiration(String JavaDoc portletCacheExpiration) {
134         this.portletCacheExpiration = portletCacheExpiration;
135     }
136
137
138     /**
139      * Sets the PortletCacheContext attribute of the ConfigureForm object
140      *
141      *@param portletCacheContext The new PortletCacheContext value
142      */

143     public void setPortletCacheContext(String JavaDoc portletCacheContext) {
144         this.portletCacheContext = portletCacheContext;
145     }
146
147
148     /**
149      * Gets the Proxy attribute of the ConfigureForm object
150      *
151      *@return The Proxy value
152      */

153     public String JavaDoc getProxy() {
154         return proxy;
155     }
156
157
158     /**
159      * Gets the Client attribute of the ConfigureForm object
160      *
161      *@return The Client value
162      */

163     public String JavaDoc getClient() {
164         return client;
165     }
166
167
168     /**
169      * Gets the EnableSSL attribute of the ConfigureForm object
170      *
171      *@return The EnableSSL value
172      */

173     public String JavaDoc getEnableSSL() {
174         return enableSSL;
175     }
176
177
178     /**
179      * Gets the EnableJavascript attribute of the ConfigureForm object
180      *
181      *@return The EnableJavascript value
182      */

183     public String JavaDoc getEnableJavascript() {
184         return enableJavascript;
185     }
186
187
188     /**
189      * Gets the HtmlDocument attribute of the ConfigureForm object
190      *
191      *@return The HtmlDocument value
192      */

193     public String JavaDoc getHtmlDocument() {
194         return htmlDocument;
195     }
196
197
198     /**
199      * Gets the EnableCSS attribute of the ConfigureForm object
200      *
201      *@return The EnableCSS value
202      */

203     public String JavaDoc getEnableCSS() {
204         return enableCSS;
205     }
206
207
208     /**
209      * Gets the BrowserJavascriptCode attribute of the ConfigureForm object
210      *
211      *@return The BrowserJavascriptCode value
212      */

213     public String JavaDoc getBrowserJavascriptCode() {
214         return browserJavascriptCode;
215     }
216
217
218     /**
219      * Gets the BrowserJavascriptEvent attribute of the ConfigureForm object
220      *
221      *@return The BrowserJavascriptEvent value
222      */

223     public String JavaDoc getBrowserJavascriptEvent() {
224         return browserJavascriptEvent;
225     }
226
227
228     /**
229      * Gets the PortletEnableSSL attribute of the ConfigureForm object
230      *
231      *@return The PortletEnableSSL value
232      */

233     public String JavaDoc getPortletEnableSSL() {
234         return portletEnableSSL;
235     }
236
237
238     /**
239      * Gets the PortletContinualClipping attribute of the ConfigureForm object
240      *
241      *@return The PortletContinualClipping value
242      */

243     public String JavaDoc getPortletContinualClipping() {
244         return portletContinualClipping;
245     }
246
247
248     /**
249      * Gets the PortletCacheExpiration attribute of the ConfigureForm object
250      *
251      *@return The PortletCacheExpiration value
252      */

253     public String JavaDoc getPortletCacheExpiration() {
254         return portletCacheExpiration;
255     }
256
257
258     /**
259      * Gets the PortletCacheContext attribute of the ConfigureForm object
260      *
261      *@return The PortletCacheContext value
262      */

263     public String JavaDoc getPortletCacheContext() {
264         return portletCacheContext;
265     }
266
267
268     /**
269      * Sets the AllPropertiesToNull attribute of the ConfigureForm object
270      *
271      *@param configuration Description of Parameter
272      */

273     public void load(ConfigureInterface configuration) {
274         ClassUtilities.synchronize(configuration, this);
275     }
276
277 }
278
Popular Tags