org.springframework.mock.web.portlet
Class MockPortletSession

java.lang.Object
  extended by org.springframework.mock.web.portlet.MockPortletSession
All Implemented Interfaces:
javax.portlet.PortletSession

public class MockPortletSession
extends Object
implements javax.portlet.PortletSession

Mock implementation of the PortletSession interface.

Since:
2.0
Author:
John A. Lewis, Juergen Hoeller

Field Summary
 
Fields inherited from interface javax.portlet.PortletSession
APPLICATION_SCOPE, PORTLET_SCOPE
 
Constructor Summary
MockPortletSession()
          Create a new MockPortletSession with a default MockPortletContext.
MockPortletSession(javax.portlet.PortletContext portletContext)
          Create a new MockPortletSession.
 
Method Summary
 void access()
           
 void clearAttributes()
          Clear all of this session's attributes.
protected  void doClearAttributes(Map<String,Object> attributes)
           
 Object getAttribute(String name)
           
 Object getAttribute(String name, int scope)
           
 Map<String,Object> getAttributeMap()
           
 Map<String,Object> getAttributeMap(int scope)
           
 Enumeration<String> getAttributeNames()
           
 Enumeration<String> getAttributeNames(int scope)
           
 long getCreationTime()
           
 String getId()
           
 long getLastAccessedTime()
           
 int getMaxInactiveInterval()
           
 javax.portlet.PortletContext getPortletContext()
           
 void invalidate()
           
 boolean isInvalid()
           
 boolean isNew()
           
 void removeAttribute(String name)
           
 void removeAttribute(String name, int scope)
           
 void setAttribute(String name, Object value)
           
 void setAttribute(String name, Object value, int scope)
           
 void setMaxInactiveInterval(int interval)
           
 void setNew(boolean value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MockPortletSession

public MockPortletSession()
Create a new MockPortletSession with a default MockPortletContext.

See Also:
MockPortletContext

MockPortletSession

public MockPortletSession(javax.portlet.PortletContext portletContext)
Create a new MockPortletSession.

Parameters:
portletContext - the PortletContext that the session runs in
Method Detail

getAttribute

public Object getAttribute(String name)
Specified by:
getAttribute in interface javax.portlet.PortletSession

getAttribute

public Object getAttribute(String name,
                           int scope)
Specified by:
getAttribute in interface javax.portlet.PortletSession

getAttributeNames

public Enumeration<String> getAttributeNames()
Specified by:
getAttributeNames in interface javax.portlet.PortletSession

getAttributeNames

public Enumeration<String> getAttributeNames(int scope)
Specified by:
getAttributeNames in interface javax.portlet.PortletSession

getCreationTime

public long getCreationTime()
Specified by:
getCreationTime in interface javax.portlet.PortletSession

getId

public String getId()
Specified by:
getId in interface javax.portlet.PortletSession

access

public void access()

getLastAccessedTime

public long getLastAccessedTime()
Specified by:
getLastAccessedTime in interface javax.portlet.PortletSession

getMaxInactiveInterval

public int getMaxInactiveInterval()
Specified by:
getMaxInactiveInterval in interface javax.portlet.PortletSession

clearAttributes

public void clearAttributes()
Clear all of this session's attributes.


doClearAttributes

protected void doClearAttributes(Map<String,Object> attributes)

invalidate

public void invalidate()
Specified by:
invalidate in interface javax.portlet.PortletSession

isInvalid

public boolean isInvalid()

setNew

public void setNew(boolean value)

isNew

public boolean isNew()
Specified by:
isNew in interface javax.portlet.PortletSession

removeAttribute

public void removeAttribute(String name)
Specified by:
removeAttribute in interface javax.portlet.PortletSession

removeAttribute

public void removeAttribute(String name,
                            int scope)
Specified by:
removeAttribute in interface javax.portlet.PortletSession

setAttribute

public void setAttribute(String name,
                         Object value)
Specified by:
setAttribute in interface javax.portlet.PortletSession

setAttribute

public void setAttribute(String name,
                         Object value,
                         int scope)
Specified by:
setAttribute in interface javax.portlet.PortletSession

setMaxInactiveInterval

public void setMaxInactiveInterval(int interval)
Specified by:
setMaxInactiveInterval in interface javax.portlet.PortletSession

getPortletContext

public javax.portlet.PortletContext getPortletContext()
Specified by:
getPortletContext in interface javax.portlet.PortletSession

getAttributeMap

public Map<String,Object> getAttributeMap()
Specified by:
getAttributeMap in interface javax.portlet.PortletSession

getAttributeMap

public Map<String,Object> getAttributeMap(int scope)
Specified by:
getAttributeMap in interface javax.portlet.PortletSession