Class PortletConfigImpl
- java.lang.Object
-
- org.gatein.pc.portlet.impl.jsr168.api.PortletConfigImpl
-
- All Implemented Interfaces:
javax.portlet.PortletConfig
public class PortletConfigImpl extends Object implements javax.portlet.PortletConfig
- Version:
- $Revision: 6817 $
- Author:
- Julien Viet
-
-
Constructor Summary
Constructors Constructor Description PortletConfigImpl(ContainerPortletInfo portletInfo, ContainerPortletApplicationInfo portletApplicationInfo, PortletContextImpl portletContext, ResourceBundleManager bundleMgr)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String[]>getContainerRuntimeOptions()StringgetDefaultNamespace()StringgetInitParameter(String s)Enumeration<String>getInitParameterNames()javax.portlet.PortletContextgetPortletContext()StringgetPortletName()Enumeration<QName>getProcessingEventQNames()Enumeration<String>getPublicRenderParameterNames()Enumeration<QName>getPublishingEventQNames()ResourceBundlegetResourceBundle(Locale locale)May return null ? the spec does not specify what happens when the bundle is not found for the locale.Enumeration<Locale>getSupportedLocales()
-
-
-
Constructor Detail
-
PortletConfigImpl
public PortletConfigImpl(ContainerPortletInfo portletInfo, ContainerPortletApplicationInfo portletApplicationInfo, PortletContextImpl portletContext, ResourceBundleManager bundleMgr)
-
-
Method Detail
-
getPortletName
public String getPortletName()
- Specified by:
getPortletNamein interfacejavax.portlet.PortletConfig
-
getPortletContext
public javax.portlet.PortletContext getPortletContext()
- Specified by:
getPortletContextin interfacejavax.portlet.PortletConfig
-
getResourceBundle
public ResourceBundle getResourceBundle(Locale locale)
May return null ? the spec does not specify what happens when the bundle is not found for the locale.- Specified by:
getResourceBundlein interfacejavax.portlet.PortletConfig
-
getInitParameter
public String getInitParameter(String s)
- Specified by:
getInitParameterin interfacejavax.portlet.PortletConfig
-
getInitParameterNames
public Enumeration<String> getInitParameterNames()
- Specified by:
getInitParameterNamesin interfacejavax.portlet.PortletConfig
-
getPublicRenderParameterNames
public Enumeration<String> getPublicRenderParameterNames()
- Specified by:
getPublicRenderParameterNamesin interfacejavax.portlet.PortletConfig
-
getDefaultNamespace
public String getDefaultNamespace()
- Specified by:
getDefaultNamespacein interfacejavax.portlet.PortletConfig
-
getPublishingEventQNames
public Enumeration<QName> getPublishingEventQNames()
- Specified by:
getPublishingEventQNamesin interfacejavax.portlet.PortletConfig
-
getProcessingEventQNames
public Enumeration<QName> getProcessingEventQNames()
- Specified by:
getProcessingEventQNamesin interfacejavax.portlet.PortletConfig
-
getSupportedLocales
public Enumeration<Locale> getSupportedLocales()
- Specified by:
getSupportedLocalesin interfacejavax.portlet.PortletConfig
-
-