KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.jahia.clipbuilder.html.bean;
2
3 /**
4  * JavaBean portlet configuration
5  *
6  *@author ktlili
7  */

8 public class PortletConfigBean {
9     private String JavaDoc enableAcceptCertificate;
10     private String JavaDoc integrationMode;
11
12
13     /**
14      * Sets the EnableAcceptCertificate attribute of the PortletConfigBean
15      * object
16      *
17      *@param enableAcceptCertificate The new EnableAcceptCertificate value
18      */

19     public void setEnableAcceptCertificate(String JavaDoc enableAcceptCertificate) {
20         this.enableAcceptCertificate = enableAcceptCertificate;
21     }
22
23
24     /**
25      * Sets the IntegrationMode attribute of the PortletConfigBean object
26      *
27      *@param integrationMode The new IntegrationMode value
28      */

29     public void setIntegrationMode(String JavaDoc integrationMode) {
30         this.integrationMode = integrationMode;
31     }
32
33
34     /**
35      * Gets the EnableAcceptCertificate attribute of the PortletConfigBean
36      * object
37      *
38      *@return The EnableAcceptCertificate value
39      */

40     public String JavaDoc getEnableAcceptCertificate() {
41         return enableAcceptCertificate;
42     }
43
44
45     /**
46      * Gets the IntegrationMode attribute of the PortletConfigBean object
47      *
48      *@return The IntegrationMode value
49      */

50     public String JavaDoc getIntegrationMode() {
51         return integrationMode;
52     }
53
54 }
55
Popular Tags