📄 portletsessionimpl.java
字号:
/* * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a> * @version $Id: PortletSessionImpl.java 4939 2006-07-20 04:49:04Z novotny $ */package org.gridsphere.portlet.impl;import javax.portlet.PortletContext;import javax.portlet.PortletSession;import javax.portlet.PortletSessionUtil;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpSession;import java.util.Enumeration;import java.util.Vector;/** * The <CODE>PortletSession</CODE> interface provides a way to identify a user * across more than one request and to store transient information about that user. * <p/> * A <code>PortletSession</code> is created per user client per portlet application. * <p/> * A portlet can bind an object attribute into a <code>PortletSession</code> by name. * The <code>PortletSession</code> interface defines two scopes for storing objects: * <ul> * <li><code>APPLICATION_SCOPE</code> * <li><code>PORTLET_SCOPE</code> * </ul> * All objects stored in the session using the <code>APPLICATION_SCOPE</code> * must be available to all the portlets, servlets and * JSPs that belongs to the same portlet application and that handles a * request identified as being a part of the same session. * Objects stored in the session using the <code>PORTLET_SCOPE</code> must be * available to the portlet during requests for the same portlet window * that the objects where stored from. Attributes stored in the * <code>PORTLET_SCOPE</code> are not protected from other web components * of the portlet application. They are just conveniently namespaced. * <P> * The portlet session is based on the <code>HttpSession</code>. Therefore all * <code>HttpSession</code> listeners do apply to the portlet session and * attributes set in the portlet session are visible in the <code>HttpSession</code> * and vice versa. */public class PortletSessionImpl implements PortletSession, HttpSession { private PortletContext ctx = null; private HttpServletRequest request = null; private HttpSession session = null; /** * Constructs an instance of SportletSession from a * <code>HttpSession</code> * * @param request the <code>PortletRequest</code> used to get ConcretePortletID * @param session the <code>HttpSession</code> */ public PortletSessionImpl(HttpServletRequest request, HttpSession session, PortletContext ctx) { this.request = request; this.session = session; this.ctx = ctx; } /** * Returns the object bound with the specified name in this session * under the <code>PORTLET_SCOPE</code>, or <code>null</code> if no * object is bound under the name in that scope. * * @param name a string specifying the name of the object * @throws IllegalStateException if this method is called on an * invalidated session. * @throws IllegalArgumentException if name is <code>null</code>. * @return the object with the specified name for * the <code>PORTLET_SCOPE</code>. */ public Object getAttribute(String name) throws IllegalStateException, IllegalArgumentException { return getAttribute(name, PortletSession.PORTLET_SCOPE); } /** * Returns an <code>Enumeration</code> of String objects containing the names of * all the objects bound to this session under the <code>PORTLET_SCOPE</code>, or an * empty <code>Enumeration</code> if no attributes are available. * * @throws IllegalStateException if this method is called on an * invalidated session * @return an <code>Enumeration</code> of * <code>String</code> objects specifying the * names of all the objects bound to * this session, or an empty <code>Enumeration</code> * if no attributes are available. */ public java.util.Enumeration getAttributeNames() throws IllegalStateException { return getAttributeNames(PortletSession.PORTLET_SCOPE); } /** * Returns the time when this session was created, measured in * milliseconds since midnight January 1, 1970 GMT. * * @throws IllegalStateException if this method is called on an * invalidated session * @return a <code>long</code> specifying * when this session was created, * expressed in * milliseconds since 1/1/1970 GMT */ public long getCreationTime() throws IllegalStateException { return session.getCreationTime(); } /** * Returns a string containing the unique identifier assigned to this session. * * @return a string specifying the identifier * assigned to this session */ public String getId() { return session.getId(); } /** * Returns the last time the client sent a request associated with this session, * as the number of milliseconds since midnight January 1, 1970 GMT. * <p/> * <p>Actions that your portlet takes, such as getting or setting * a value associated with the session, do not affect the access * time. * * @return a <code>long</code> * representing the last time * the client sent a request associated * with this session, expressed in * milliseconds since 1/1/1970 GMT */ public long getLastAccessedTime() { return session.getLastAccessedTime(); } /** * Returns the maximum time interval, in seconds, for which the portlet container * keeps this session open between client accesses. After this interval, * the portlet container invalidates the session. The maximum time * interval can be set * with the <code>setMaxInactiveInterval</code> method. * A negative time indicates the session should never timeout. * * @return an integer specifying the number of * seconds this session remains open * between client requests * @see #setMaxInactiveInterval */ public int getMaxInactiveInterval() { return session.getMaxInactiveInterval(); } /** * Invalidates this session (all scopes) and unbinds any objects bound to it. * <p/> * Invalidating the portlet session will result in invalidating the underlying * <code>HttpSession</code> * * @throws IllegalStateException if this method is called on a * session which has already been invalidated */ public void invalidate() throws IllegalStateException { session.invalidate(); } /** * Returns true if the client does not yet know about the session or * if the client chooses not to join the session. * * @return <code>true</code> if the * server has created a session, * but the client has not joined yet. * @throws IllegalStateException if this method is called on a * session which has already been invalidated */ public boolean isNew() throws IllegalStateException { return session.isNew(); } /** * Removes the object bound with the specified name under * the <code>PORTLET_SCOPE</code> from * this session. If the session does not have an object * bound with the specified name, this method does nothing. * * @param name the name of the object to be * removed from this session in the * <code> PORTLET_SCOPE</code>. * @throws IllegalStateException if this method is called on a * session which has been invalidated * @throws IllegalArgumentException if name is <code>null</code>. */ public void removeAttribute(String name) throws IllegalStateException, IllegalArgumentException { removeAttribute(name, PortletSession.PORTLET_SCOPE); } /** * Binds an object to this session under the <code>PORTLET_SCOPE</code>, using the name specified. * If an object of the same name in this scope is already bound to the session,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -