org.springframework.mock.web.portlet
Class MockPortletContext

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

public class MockPortletContext
extends Object
implements javax.portlet.PortletContext

Mock implementation of the PortletContext interface.

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

Constructor Summary
MockPortletContext()
          Create a new MockPortletContext with no base path and a DefaultResourceLoader (i.e. the classpath root as WAR root).
MockPortletContext(ResourceLoader resourceLoader)
          Create a new MockPortletContext, using the specified ResourceLoader and no base path.
MockPortletContext(String resourceBasePath)
          Create a new MockPortletContext using a DefaultResourceLoader.
MockPortletContext(String resourceBasePath, ResourceLoader resourceLoader)
          Create a new MockPortletContext.
 
Method Summary
 void addInitParameter(String name, String value)
           
 Object getAttribute(String name)
           
 Enumeration getAttributeNames()
           
 String getInitParameter(String name)
           
 Enumeration getInitParameterNames()
           
 int getMajorVersion()
           
 String getMimeType(String filePath)
           
 int getMinorVersion()
           
 javax.portlet.PortletRequestDispatcher getNamedDispatcher(String path)
           
 String getPortletContextName()
           
 String getRealPath(String path)
           
 javax.portlet.PortletRequestDispatcher getRequestDispatcher(String path)
           
 URL getResource(String path)
           
 InputStream getResourceAsStream(String path)
           
protected  String getResourceLocation(String path)
          Build a full resource location for the given path, prepending the resource base path of this MockPortletContext.
 Set getResourcePaths(String path)
           
 String getServerInfo()
           
 void log(String message)
           
 void log(String message, Throwable t)
           
 void removeAttribute(String name)
           
 void setAttribute(String name, Object value)
           
 void setPortletContextName(String portletContextName)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MockPortletContext

public MockPortletContext()
Create a new MockPortletContext with no base path and a DefaultResourceLoader (i.e. the classpath root as WAR root).

See Also:
DefaultResourceLoader

MockPortletContext

public MockPortletContext(String resourceBasePath)
Create a new MockPortletContext using a DefaultResourceLoader.

Parameters:
resourceBasePath - the WAR root directory (should not end with a slash)
See Also:
DefaultResourceLoader

MockPortletContext

public MockPortletContext(ResourceLoader resourceLoader)
Create a new MockPortletContext, using the specified ResourceLoader and no base path.

Parameters:
resourceLoader - the ResourceLoader to use (or null for the default)

MockPortletContext

public MockPortletContext(String resourceBasePath,
                          ResourceLoader resourceLoader)
Create a new MockPortletContext.

Parameters:
resourceBasePath - the WAR root directory (should not end with a slash)
resourceLoader - the ResourceLoader to use (or null for the default)
Method Detail

getResourceLocation

protected String getResourceLocation(String path)
Build a full resource location for the given path, prepending the resource base path of this MockPortletContext.

Parameters:
path - the path as specified
Returns:
the full resource path

getServerInfo

public String getServerInfo()
Specified by:
getServerInfo in interface javax.portlet.PortletContext

getRequestDispatcher

public javax.portlet.PortletRequestDispatcher getRequestDispatcher(String path)
Specified by:
getRequestDispatcher in interface javax.portlet.PortletContext

getNamedDispatcher

public javax.portlet.PortletRequestDispatcher getNamedDispatcher(String path)
Specified by:
getNamedDispatcher in interface javax.portlet.PortletContext

getResourceAsStream

public InputStream getResourceAsStream(String path)
Specified by:
getResourceAsStream in interface javax.portlet.PortletContext

getMajorVersion

public int getMajorVersion()
Specified by:
getMajorVersion in interface javax.portlet.PortletContext

getMinorVersion

public int getMinorVersion()
Specified by:
getMinorVersion in interface javax.portlet.PortletContext

getMimeType

public String getMimeType(String filePath)
Specified by:
getMimeType in interface javax.portlet.PortletContext

getRealPath

public String getRealPath(String path)
Specified by:
getRealPath in interface javax.portlet.PortletContext

getResourcePaths

public Set getResourcePaths(String path)
Specified by:
getResourcePaths in interface javax.portlet.PortletContext

getResource

public URL getResource(String path)
                throws MalformedURLException
Specified by:
getResource in interface javax.portlet.PortletContext
Throws:
MalformedURLException

getAttribute

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

getAttributeNames

public Enumeration getAttributeNames()
Specified by:
getAttributeNames in interface javax.portlet.PortletContext

setAttribute

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

removeAttribute

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

addInitParameter

public void addInitParameter(String name,
                             String value)

getInitParameter

public String getInitParameter(String name)
Specified by:
getInitParameter in interface javax.portlet.PortletContext

getInitParameterNames

public Enumeration getInitParameterNames()
Specified by:
getInitParameterNames in interface javax.portlet.PortletContext

log

public void log(String message)
Specified by:
log in interface javax.portlet.PortletContext

log

public void log(String message,
                Throwable t)
Specified by:
log in interface javax.portlet.PortletContext

setPortletContextName

public void setPortletContextName(String portletContextName)

getPortletContextName

public String getPortletContextName()
Specified by:
getPortletContextName in interface javax.portlet.PortletContext


Copyright © 2002-2008 The Spring Framework.