Class WebDavServlet

java.lang.Object
javax.servlet.GenericServlet
org.apache.ofbiz.webapp.webdav.WebDavServlet
All Implemented Interfaces:
Serializable, Servlet, ServletConfig

public class WebDavServlet extends GenericServlet
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: