KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > bean > ConfigureInterface


1 package org.jahia.clipbuilder.html.bean;
2
3 /**
4  * Configuration Interface
5  *
6  *@author Tlili Khaled
7  */

8 public interface ConfigureInterface {
9
10     /**
11      * Gets the EnableCSS attribute of the ConfigureInterface object
12      *
13      *@return The EnableCSS value
14      */

15     public String JavaDoc getEnableCSS();
16
17
18     /**
19      * Sets the EnableCSS attribute of the ConfigureInterface object
20      *
21      *@param enableCSS The new EnableCSS value
22      */

23     public void setEnableCSS(String JavaDoc enableCSS);
24
25
26     /**
27      * Gets the Client attribute of the ConfigureInterface object
28      *
29      *@return The Client value
30      */

31     public String JavaDoc getClient();
32
33
34     /**
35      * Gets the EnableJavascript attribute of the ConfigureInterface object
36      *
37      *@return The EnableJavascript value
38      */

39     public String JavaDoc getEnableJavascript();
40
41
42     /**
43      * Gets the EnableSSL attribute of the ConfigureInterface object
44      *
45      *@return The EnableSSL value
46      */

47     public String JavaDoc getEnableSSL();
48
49
50     /**
51      * Gets the HtmlDocument attribute of the ConfigureInterface object
52      *
53      *@return The HtmlDocument value
54      */

55     public String JavaDoc getHtmlDocument();
56
57
58     /**
59      * Gets the Proxy attribute of the ConfigureInterface object
60      *
61      *@return The Proxy value
62      */

63     public String JavaDoc getProxy();
64
65
66     /**
67      * Sets the Client attribute of the ConfigureInterface object
68      *
69      *@param client The new Client value
70      */

71     public void setClient(String JavaDoc client);
72
73
74     /**
75      * Sets the EnableJavascript attribute of the ConfigureInterface object
76      *
77      *@param enableJavascript The new EnableJavascript value
78      */

79     public void setEnableJavascript(String JavaDoc enableJavascript);
80
81
82     /**
83      * Sets the EnableSSL attribute of the ConfigureInterface object
84      *
85      *@param enableSSL The new EnableSSL value
86      */

87     public void setEnableSSL(String JavaDoc enableSSL);
88
89
90     /**
91      * Sets the HtmlDocument attribute of the ConfigureInterface object
92      *
93      *@param htmlDocument The new HtmlDocument value
94      */

95     public void setHtmlDocument(String JavaDoc htmlDocument);
96
97
98     /**
99      * Sets the Proxy attribute of the ConfigureInterface object
100      *
101      *@param proxy The new Proxy value
102      */

103     public void setProxy(String JavaDoc proxy);
104
105
106
107     /**
108      * Description of the Method
109      *
110      *@param configuration Description of Parameter
111      */

112     public void load(ConfigureInterface configuration);
113
114
115     /**
116      * Gets the BrowserJavascriptCode attribute of the ConfigureInterface object
117      *
118      *@return The BrowserJavascriptCode value
119      */

120     public String JavaDoc getBrowserJavascriptCode();
121
122
123     /**
124      * Gets the BrowserJavascriptEvent attribute of the ConfigureInterface
125      * object
126      *
127      *@return The BrowserJavascriptEvent value
128      */

129     public String JavaDoc getBrowserJavascriptEvent();
130
131
132     /**
133      * Sets the BrowserJavascriptCode attribute of the ConfigureInterface object
134      *
135      *@param browserJavascriptCode The new BrowserJavascriptCode value
136      */

137     public void setBrowserJavascriptCode(String JavaDoc browserJavascriptCode);
138
139
140     /**
141      * Sets the BrowserJavascriptEvent attribute of the ConfigureInterface
142      * object
143      *
144      *@param browserJavascriptEvent The new BrowserJavascriptEvent value
145      */

146     public void setBrowserJavascriptEvent(String JavaDoc browserJavascriptEvent);
147
148
149     /**
150      * Gets the PortletContinualClipping attribute of the ConfigureInterface
151      * object
152      *
153      *@return The PortletContinualClipping value
154      */

155     public String JavaDoc getPortletContinualClipping();
156
157
158     /**
159      * Gets the PortletEnableSSL attribute of the ConfigureInterface object
160      *
161      *@return The PortletEnableSSL value
162      */

163     public String JavaDoc getPortletEnableSSL();
164
165
166     /**
167      * Sets the PortletContinualClipping attribute of the ConfigureInterface
168      * object
169      *
170      *@param portletContinualClipping The new PortletContinualClipping value
171      */

172     public void setPortletContinualClipping(String JavaDoc portletContinualClipping);
173
174
175     /**
176      * Sets the PortletEnableSSL attribute of the ConfigureInterface object
177      *
178      *@param portletEnableSSL The new PortletEnableSSL value
179      */

180     public void setPortletEnableSSL(String JavaDoc portletEnableSSL);
181
182
183     /**
184      * Gets the PortletCacheContext attribute of the ConfigureInterface object
185      *
186      *@return The PortletCacheContext value
187      */

188     public String JavaDoc getPortletCacheContext();
189
190
191     /**
192      * Sets the PortletCacheContext attribute of the ConfigureInterface object
193      *
194      *@param portletCacheContext The new PortletCacheContext value
195      */

196     public void setPortletCacheContext(String JavaDoc portletCacheContext);
197
198 }
199
Popular Tags