Field and Description |
---|
javax.portlet.faces.Bridge.BRIDGE_EVENT_HANDLER
Call
ExternalContext.getInitParameter(String) with parameter value
"javax.portlet.faces.bridgeEventHandler" instead.
Portlet context attribute that a portlet can set prior to calling "javax.portlet.faces." + portletContext.getPortletName() + ".bridgeEventHandler" |
javax.portlet.faces.Bridge.BRIDGE_PUBLIC_RENDER_PARAMETER_HANDLER
Call
ExternalContext.getInitParameter(String) with parameter value
"javax.portlet.faces.bridgePublicRenderParameterHandler" instead.
Portlet context attribute that a portlet can set prior to calling the "javax.portlet.faces." + portletContext.getPortletName() + ".bridgeEventHandler" |
javax.portlet.faces.GenericFacesPortlet.DEFAULT_CHARACTERSET_ENCODING
Portlet init parameter that defines the render response CharacterSetEncoding the bridge sets prior
to rendering. Typcially only set when the jsp outputs an encoding other then the portlet container's
and the portlet container supports response encoding transformation. It is deprecated because bridge
implementations (since JSR 329) no longer utilize it.
|
javax.portlet.faces.GenericFacesPortlet.DEFAULT_CONTENT_TYPE
Portlet init parameter that defines the render response ContentType the bridge sets prior to
rendering. If not set the bridge uses the request's preferred content type. It is deprecated because
bridge implementations (since JSR 329) no longer utilize it.
|
javax.portlet.faces.Bridge.DEFAULT_RENDERKIT_ID
Call
ExternalContext.getInitParameter(String) with parameter value
"javax.portlet.faces.defaultRenderKitId" instead.
Portlet context attribute that a portlet can set prior to calling the |
javax.portlet.faces.Bridge.DEFAULT_VIEWID_MAP
Call
ExternalContext.getInitParameter(String) with parameter
"javax.portlet.faces.defaultViewId.view", "javax.portlet.faces.defaultViewId.edit", or
"javax.portlet.faces.defaultViewId.help", etc.
Portlet context attribute that a portlet must set prior to calling "javax.portlet.faces." + portletContext.getPortletName() + ".defaultViewIdMap" |
javax.portlet.faces.Bridge.EXCLUDED_REQUEST_ATTRIBUTES
Call
ExternalContext.getInitParameter(String) with parameter value
"javax.portlet.faces.excludedRequestAttributes" instead.
Portlet context attribute that a portlet can set prior to calling "javax.portlet.faces." + portletContext.getPortletName() + ".excludedRequestAttributes" |
javax.portlet.faces.Bridge.PRESERVE_ACTION_PARAMS
Call
ExternalContext.getInitParameter(String) with parameter value
"javax.portlet.faces.preserveActionParams" instead.
Portlet context attribute that a portlet can set prior to calling "javax.portlet.faces." + portletContext.getPortletName() + ".preserveActionParams" |
Method and Description |
---|
javax.portlet.faces.GenericFacesPortlet.getBridgeEventHandler()
Call
BridgeEventHandlerFactory.getBridgeEventHandler(PortletConfig) instead.
Returns an instance of a BridgeEventHandler used to process portlet events in a JSF environment. This default implementation looks for a portlet initParameter that names the class used to instantiate the handler. Note that this method will only be called by |
javax.portlet.faces.GenericFacesPortlet.getBridgePublicRenderParameterHandler()
Call
BridgePublicRenderParameterHandlerFactory.getBridgePublicRenderParameterHandler(PortletConfig)
instead.
Returns an instance of a BridgePublicRenderParameterHandler used to post process public render parameter changes that the bridge has pushed into mapped models. This default implementation looks for a portlet initParameter that names the class used to instantiate the handler. Note that this method will only be called by |
javax.portlet.faces.GenericFacesPortlet.getDefaultRenderKitId()
Call
ExternalContext.getInitParameter(String) with parameter value
"javax.portlet.faces.defaultRenderKitId" instead.
Returns a String defining the default render kit id the bridge should ensure for this portlet. If
non-null, this value is used to override any default render kit id set on an app wide basis in the
faces-config.xml. This default implementation reads the values from the portlet init-param
javax.portlet.faces.defaultRenderKitId. If not present, Note that this method will only be called by |
javax.portlet.faces.GenericFacesPortlet.getDefaultViewIdMap()
Call
ExternalContext.getInitParameter(String) with parameter
"javax.portlet.faces.defaultViewId.view", "javax.portlet.faces.defaultViewId.edit", or
"javax.portlet.faces.defaultViewId.help", etc.
Returns a map of default viewIds that the bridge should use when it is unable to resolve to a
specific target in the incoming request. There is one entry per support Note that this method will only be called by |
javax.portlet.faces.GenericFacesPortlet.getExcludedRequestAttributes()
Call
ExternalContext.getInitParameter(String) with parameter
"javax.portlet.faces.excludedRequestAttributes" instead.
Returns the set of RequestAttribute names that the portlet wants the bridge to exclude from its managed request scope. This default implementation picks up this list from the comma delimited init-param javax.portlet.faces.excludedRequestAttributes. Note that this method will only be called by |
javax.portlet.faces.GenericFacesPortlet.isPreserveActionParameters()
Call
ExternalContext.getInitParameter(String) with parameter
"javax.portlet.faces.preserveActionParams" instead.
Returns a boolean indicating whether or not the bridge should preserve all the action parameters in the subsequent renders that occur in the same scope. This default implementation reads the values from the portlet init-param javax.portlet.faces.preserveActionParams. If not present, false is returned. Note that this method will only be called by |
Copyright © 2022 Liferay, Inc. All rights reserved.