|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.shale.test.mock.MockServletContext
public class MockServletContext
Mock implementation of ServletContext
.
WARNING - Before you can get meaningful results from
calls to the getResource()
, getResourceAsStream()
,
getResourcePaths()
, or getRealPath()
methods,
you must configure the documentRoot
property, passing in a
File
object pointing at a directory that simulates a
web application structure.
Constructor Summary | |
---|---|
MockServletContext()
|
Method Summary | |
---|---|
void |
addAttributeListener(javax.servlet.ServletContextAttributeListener listener)
Add a new listener instance that should be notified about attribute changes. |
void |
addInitParameter(java.lang.String name,
java.lang.String value)
Add a context initialization parameter to the set of parameters recognized by this instance. |
void |
addMimeType(java.lang.String extension,
java.lang.String contentType)
Add a new MIME type mapping to the set of mappings recognized by this instance. |
java.lang.Object |
getAttribute(java.lang.String name)
|
java.util.Enumeration |
getAttributeNames()
|
javax.servlet.ServletContext |
getContext(java.lang.String uripath)
|
java.lang.String |
getContextPath()
|
java.lang.String |
getInitParameter(java.lang.String name)
|
java.util.Enumeration |
getInitParameterNames()
|
int |
getMajorVersion()
|
java.lang.String |
getMimeType(java.lang.String path)
|
int |
getMinorVersion()
|
javax.servlet.RequestDispatcher |
getNamedDispatcher(java.lang.String name)
|
java.lang.String |
getRealPath(java.lang.String path)
|
javax.servlet.RequestDispatcher |
getRequestDispatcher(java.lang.String path)
|
java.net.URL |
getResource(java.lang.String path)
|
java.io.InputStream |
getResourceAsStream(java.lang.String path)
|
java.util.Set |
getResourcePaths(java.lang.String path)
|
java.lang.String |
getServerInfo()
|
javax.servlet.Servlet |
getServlet(java.lang.String name)
|
java.lang.String |
getServletContextName()
|
java.util.Enumeration |
getServletNames()
|
java.util.Enumeration |
getServlets()
|
void |
log(java.lang.Exception exception,
java.lang.String message)
|
void |
log(java.lang.String message)
|
void |
log(java.lang.String message,
java.lang.Throwable exception)
|
void |
removeAttribute(java.lang.String name)
|
void |
setAttribute(java.lang.String name,
java.lang.Object value)
|
void |
setDocumentRoot(java.io.File documentRoot)
Set the document root for getRealPath()
resolution. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MockServletContext()
Method Detail |
---|
public void addAttributeListener(javax.servlet.ServletContextAttributeListener listener)
Add a new listener instance that should be notified about attribute changes.
listener
- Listener to be addedpublic void addInitParameter(java.lang.String name, java.lang.String value)
Add a context initialization parameter to the set of parameters recognized by this instance.
name
- Parameter namevalue
- Parameter valuepublic void addMimeType(java.lang.String extension, java.lang.String contentType)
Add a new MIME type mapping to the set of mappings recognized by this instance.
extension
- Extension to check for (without the period)contentType
- Corresponding content typepublic void setDocumentRoot(java.io.File documentRoot)
Set the document root for getRealPath()
resolution. This parameter MUST represent
a directory.
documentRoot
- The new base directorypublic java.lang.Object getAttribute(java.lang.String name)
getAttribute
in interface javax.servlet.ServletContext
public java.util.Enumeration getAttributeNames()
getAttributeNames
in interface javax.servlet.ServletContext
public javax.servlet.ServletContext getContext(java.lang.String uripath)
getContext
in interface javax.servlet.ServletContext
public java.lang.String getContextPath()
public java.lang.String getInitParameter(java.lang.String name)
getInitParameter
in interface javax.servlet.ServletContext
public java.util.Enumeration getInitParameterNames()
getInitParameterNames
in interface javax.servlet.ServletContext
public int getMajorVersion()
getMajorVersion
in interface javax.servlet.ServletContext
public java.lang.String getMimeType(java.lang.String path)
getMimeType
in interface javax.servlet.ServletContext
public int getMinorVersion()
getMinorVersion
in interface javax.servlet.ServletContext
public javax.servlet.RequestDispatcher getNamedDispatcher(java.lang.String name)
getNamedDispatcher
in interface javax.servlet.ServletContext
public java.lang.String getRealPath(java.lang.String path)
getRealPath
in interface javax.servlet.ServletContext
public javax.servlet.RequestDispatcher getRequestDispatcher(java.lang.String path)
getRequestDispatcher
in interface javax.servlet.ServletContext
public java.net.URL getResource(java.lang.String path) throws java.net.MalformedURLException
getResource
in interface javax.servlet.ServletContext
java.net.MalformedURLException
public java.io.InputStream getResourceAsStream(java.lang.String path)
getResourceAsStream
in interface javax.servlet.ServletContext
public java.util.Set getResourcePaths(java.lang.String path)
getResourcePaths
in interface javax.servlet.ServletContext
public javax.servlet.Servlet getServlet(java.lang.String name) throws javax.servlet.ServletException
getServlet
in interface javax.servlet.ServletContext
javax.servlet.ServletException
public java.lang.String getServletContextName()
getServletContextName
in interface javax.servlet.ServletContext
public java.lang.String getServerInfo()
getServerInfo
in interface javax.servlet.ServletContext
public java.util.Enumeration getServlets()
getServlets
in interface javax.servlet.ServletContext
public java.util.Enumeration getServletNames()
getServletNames
in interface javax.servlet.ServletContext
public void log(java.lang.String message)
log
in interface javax.servlet.ServletContext
public void log(java.lang.Exception exception, java.lang.String message)
log
in interface javax.servlet.ServletContext
public void log(java.lang.String message, java.lang.Throwable exception)
log
in interface javax.servlet.ServletContext
public void removeAttribute(java.lang.String name)
removeAttribute
in interface javax.servlet.ServletContext
public void setAttribute(java.lang.String name, java.lang.Object value)
setAttribute
in interface javax.servlet.ServletContext
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |