Package org.apache.ofbiz.webapp.webdav
Class WebDavServlet
java.lang.Object
javax.servlet.GenericServlet
org.apache.ofbiz.webapp.webdav.WebDavServlet
- All Implemented Interfaces:
Serializable
,Servlet
,ServletConfig
Implements a WebDAV servlet. The servlet simply forwards WebDAV requests
to a
RequestHandlerFactory
instance, whose class is specified
in the web application's web.xml file:
<context-param>
<param-name>requestHandlerFactoryClass</param-name>
<param-value>com.mydomain.MyWebDAVFactory</param-value>
</context-param>
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
init
(ServletConfig config) void
service
(ServletRequest request, ServletResponse response) Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
-
Constructor Details
-
WebDavServlet
public WebDavServlet()
-
-
Method Details
-
init
- Specified by:
init
in interfaceServlet
- Overrides:
init
in classGenericServlet
- Throws:
ServletException
-
service
public void service(ServletRequest request, ServletResponse response) throws ServletException, IOException - Specified by:
service
in interfaceServlet
- Specified by:
service
in classGenericServlet
- Throws:
ServletException
IOException
-