| java.lang.Object org.apache.pluto.internal.impl.PortletSessionImpl
PortletSessionImpl | public class PortletSessionImpl implements PortletSession,HttpSession(Code) | | Implementation of the javax.portlet.PortletSession interface.
|
getAttribute | public Object getAttribute(String name, int scope)(Code) | | Returns the attribute of the specified name under the given scope.
Parameters: name - the attribute name. Parameters: scope - the scope under which the attribute object is stored. the attribute object. |
getCreationTime | public long getCreationTime()(Code) | | |
getLastAccessedTime | public long getLastAccessedTime()(Code) | | |
getMaxInactiveInterval | public int getMaxInactiveInterval()(Code) | | |
getSessionContext | public HttpSessionContext getSessionContext()(Code) | | DEPRECATED: implemented for backwards compatability with HttpSession.
|
getValueNames | public String[] getValueNames()(Code) | | DEPRECATED: Implemented for backwards compatibility with HttpSession.
|
removeAttribute | public void removeAttribute(String name)(Code) | | |
removeAttribute | public void removeAttribute(String name, int scope)(Code) | | |
setMaxInactiveInterval | public void setMaxInactiveInterval(int interval)(Code) | | Specifies the time, in seconds, between client requests, before the
portlet container invalidates this session. A negative time indicates
the session should never timeout.
[Portlet Spec. PLT. 15.4.] If the PortletSession object is invalidated
by a portlet, the portlet container must invalidate the associated
HttpSession object.
Parameters: interval - an integer specifying the number of seconds. |
|
|