|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface PortletConfig
The PortletConfig interface provides the portlet with its configuration. The configuration holds
information about the portlet that is valid for all users. The configuration is retrieved from the portlet definition
in the deployment descriptor. The portlet can only read the configuration data.
Portlet| Method Summary | |
|---|---|
java.lang.String |
getInitParameter(java.lang.String name)
Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist. |
java.util.Enumeration |
getInitParameterNames()
Returns the names of the portlet initialization parameters as an Enumeration of String objects, or an
empty Enumeration if the portlet has no initialization parameters. |
PortletContext |
getPortletContext()
Returns the PortletContext of the portlet application the portlet is in. |
java.lang.String |
getPortletName()
Returns the name of the portlet. |
java.util.ResourceBundle |
getResourceBundle(java.util.Locale locale)
Gets the resource bundle for the given locale based on the resource bundle defined in the deployment descriptor with resource-bundle tag or the inlined resources defined in the deployment descriptor. |
| Method Detail |
|---|
java.lang.String getPortletName()
portlet-name tag.
PortletContext getPortletContext()
PortletContext of the portlet application the portlet is in.
PortletContext object, used by the caller to interact with its portlet containerPortletContextjava.util.ResourceBundle getResourceBundle(java.util.Locale locale)
resource-bundle tag or the inlined resources defined in the deployment descriptor.
locale - the locale for which to retrieve the resource bundle
java.lang.String getInitParameter(java.lang.String name)
throws java.lang.IllegalArgumentException
name - a String specifying the name of the initialization parameter
String containing the value of the initialization parameter
java.lang.IllegalArgumentException - if name is null.java.util.Enumeration getInitParameterNames()
Enumeration of String objects, or an
empty Enumeration if the portlet has no initialization parameters.
Enumeration of String objects containing the names of the portlet
initialization parameters, or an empty Enumeration if the portlet has no initialization parameters.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||