public class ServletWrappingPortletContext extends Object implements PortletContext
PortletContext
interface,
wrapping an underlying ServletContext
.MockPortletContext
Constructor and Description |
---|
ServletWrappingPortletContext(ServletContext servletContext)
Create a new PortletContext wrapping the given ServletContext.
|
Modifier and Type | Method and Description |
---|---|
Object |
getAttribute(String name) |
Enumeration<String> |
getAttributeNames() |
Enumeration<String> |
getContainerRuntimeOptions() |
String |
getInitParameter(String name) |
Enumeration<String> |
getInitParameterNames() |
int |
getMajorVersion() |
String |
getMimeType(String file) |
int |
getMinorVersion() |
PortletRequestDispatcher |
getNamedDispatcher(String name) |
String |
getPortletContextName() |
String |
getRealPath(String path) |
PortletRequestDispatcher |
getRequestDispatcher(String path) |
URL |
getResource(String path) |
InputStream |
getResourceAsStream(String path) |
Set<String> |
getResourcePaths(String path) |
String |
getServerInfo() |
ServletContext |
getServletContext()
Return the underlying ServletContext that this PortletContext wraps.
|
void |
log(String msg) |
void |
log(String message,
Throwable throwable) |
void |
removeAttribute(String name) |
void |
setAttribute(String name,
Object object) |
public ServletWrappingPortletContext(ServletContext servletContext)
servletContext
- the ServletContext to wrappublic final ServletContext getServletContext()
public String getServerInfo()
getServerInfo
in interface PortletContext
public PortletRequestDispatcher getRequestDispatcher(String path)
getRequestDispatcher
in interface PortletContext
public PortletRequestDispatcher getNamedDispatcher(String name)
getNamedDispatcher
in interface PortletContext
public InputStream getResourceAsStream(String path)
getResourceAsStream
in interface PortletContext
public int getMajorVersion()
getMajorVersion
in interface PortletContext
public int getMinorVersion()
getMinorVersion
in interface PortletContext
public String getMimeType(String file)
getMimeType
in interface PortletContext
public String getRealPath(String path)
getRealPath
in interface PortletContext
public Set<String> getResourcePaths(String path)
getResourcePaths
in interface PortletContext
public URL getResource(String path) throws MalformedURLException
getResource
in interface PortletContext
MalformedURLException
public Object getAttribute(String name)
getAttribute
in interface PortletContext
public Enumeration<String> getAttributeNames()
getAttributeNames
in interface PortletContext
public String getInitParameter(String name)
getInitParameter
in interface PortletContext
public Enumeration<String> getInitParameterNames()
getInitParameterNames
in interface PortletContext
public void log(String msg)
log
in interface PortletContext
public void log(String message, Throwable throwable)
log
in interface PortletContext
public void removeAttribute(String name)
removeAttribute
in interface PortletContext
public void setAttribute(String name, Object object)
setAttribute
in interface PortletContext
public String getPortletContextName()
getPortletContextName
in interface PortletContext
public Enumeration<String> getContainerRuntimeOptions()
getContainerRuntimeOptions
in interface PortletContext