Uses of Interface
javax.portlet.PortletSession
-
Packages that use PortletSession Package Description javax.portlet The javax.portlet package defines the API for Java Portlet Specification V2.0.javax.portlet.filter The javax.portlet.filter package defines the filter APIs for the Java Portlet Specification. -
-
Uses of PortletSession in javax.portlet
Methods in javax.portlet that return PortletSession Modifier and Type Method Description PortletSession
PortletRequest. getPortletSession()
Returns the current portlet session or, if there is no current session, creates one and returns the new session.PortletSession
PortletRequest. getPortletSession(boolean create)
Returns the current portlet session or, if there is no current session and the given flag istrue
, creates one and returns the new session. -
Uses of PortletSession in javax.portlet.filter
Methods in javax.portlet.filter that return PortletSession Modifier and Type Method Description PortletSession
PortletRequestWrapper. getPortletSession()
The default behavior of this method is to callgetPortletSession()
on the wrapped request object.PortletSession
PortletRequestWrapper. getPortletSession(boolean create)
The default behavior of this method is to callgetPortletSession(create)
on the wrapped request object.
-