Java Doc for WebdavServlet.java in  » Web-Server » Rimfaxe-Web-Server » org » apache » catalina » servlets » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Server » Rimfaxe Web Server » org.apache.catalina.servlets 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.servlet.http.HttpServlet
   org.apache.catalina.servlets.DefaultServlet
      org.apache.catalina.servlets.WebdavServlet

WebdavServlet
public class WebdavServlet extends DefaultServlet (Code)
Servlet which adds support for WebDAV level 2. All the basic HTTP requests are handled by the DefaultServlet.
author:
   Remy Maucherat
version:
   $Revision: 1.28 $ $Date: 2002/04/01 18:12:38 $


Field Summary
final protected static  StringDEFAULT_NAMESPACE
     Default namespace.
final protected static  SimpleDateFormatcreationDateFormat
     Simple date format for the creation date ISO representation (partial).


Method Summary
protected  booleancheckIfHeaders(HttpServletRequest request, HttpServletResponse response, ResourceInfo resourceInfo)
     Check if the conditions specified in the optional If headers are satisfied.
protected  voiddoCopy(HttpServletRequest req, HttpServletResponse resp)
     COPY Method.
protected  voiddoDelete(HttpServletRequest req, HttpServletResponse resp)
     DELETE Method.
protected  voiddoLock(HttpServletRequest req, HttpServletResponse resp)
     LOCK Method.
protected  voiddoMkcol(HttpServletRequest req, HttpServletResponse resp)
     MKCOL Method.
protected  voiddoMove(HttpServletRequest req, HttpServletResponse resp)
     MOVE Method.
protected  voiddoOptions(HttpServletRequest req, HttpServletResponse resp)
     OPTIONS Method.
protected  voiddoPropfind(HttpServletRequest req, HttpServletResponse resp)
     PROPFIND Method.
protected  voiddoProppatch(HttpServletRequest req, HttpServletResponse resp)
     PROPPATCH Method.
protected  voiddoPut(HttpServletRequest req, HttpServletResponse resp)
     Process a POST request for the specified resource.
protected  voiddoUnlock(HttpServletRequest req, HttpServletResponse resp)
     UNLOCK Method.
protected  DocumentBuildergetDocumentBuilder()
     Return JAXP document builder instance.
protected  StringgetETagValue(ResourceInfo resourceInfo)
    
public  voidinit()
     Initialize this servlet.
protected  voidservice(HttpServletRequest req, HttpServletResponse resp)
     Handles the special WebDAV methods.

Field Detail
DEFAULT_NAMESPACE
final protected static String DEFAULT_NAMESPACE(Code)
Default namespace.



creationDateFormat
final protected static SimpleDateFormat creationDateFormat(Code)
Simple date format for the creation date ISO representation (partial).





Method Detail
checkIfHeaders
protected boolean checkIfHeaders(HttpServletRequest request, HttpServletResponse response, ResourceInfo resourceInfo) throws IOException(Code)
Check if the conditions specified in the optional If headers are satisfied.
Parameters:
  request - The servlet request we are processing
Parameters:
  response - The servlet response we are creating
Parameters:
  resourceInfo - File object boolean true if the resource meets all the specified conditions,and false if any of the conditions is not satisfied, in which caserequest processing is stopped



doCopy
protected void doCopy(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
COPY Method.



doDelete
protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
DELETE Method.



doLock
protected void doLock(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
LOCK Method.



doMkcol
protected void doMkcol(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
MKCOL Method.



doMove
protected void doMove(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
MOVE Method.



doOptions
protected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
OPTIONS Method.



doPropfind
protected void doPropfind(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
PROPFIND Method.



doProppatch
protected void doProppatch(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
PROPPATCH Method.



doPut
protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
Process a POST request for the specified resource.
Parameters:
  request - The servlet request we are processing
Parameters:
  response - The servlet response we are creating
exception:
  IOException - if an input/output error occurs
exception:
  ServletException - if a servlet-specified error occurs



doUnlock
protected void doUnlock(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
UNLOCK Method.



getDocumentBuilder
protected DocumentBuilder getDocumentBuilder() throws ServletException(Code)
Return JAXP document builder instance.



getETagValue
protected String getETagValue(ResourceInfo resourceInfo)(Code)



init
public void init() throws ServletException(Code)
Initialize this servlet.



service
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)
Handles the special WebDAV methods.



Fields inherited from org.apache.catalina.servlets.DefaultServlet
final protected static String RESOURCES_JNDI_NAME(Code)(Java Doc)
protected int debug(Code)(Java Doc)
final protected static SimpleDateFormat formats(Code)(Java Doc)
final protected static TimeZone gmtZone(Code)(Java Doc)
protected int input(Code)(Java Doc)
protected boolean listings(Code)(Java Doc)
final protected static MD5Encoder md5Encoder(Code)(Java Doc)
protected static MessageDigest md5Helper(Code)(Java Doc)
final protected static String mimeSeparation(Code)(Java Doc)
protected int output(Code)(Java Doc)
protected boolean readOnly(Code)(Java Doc)
protected static StringManager sm(Code)(Java Doc)
protected static URLEncoder urlEncoder(Code)(Java Doc)
protected String welcomes(Code)(Java Doc)

Methods inherited from org.apache.catalina.servlets.DefaultServlet
protected String appendParameters(HttpServletRequest request, String redirectPath)(Code)(Java Doc)
protected boolean checkIfHeaders(HttpServletRequest request, HttpServletResponse response, ResourceInfo resourceInfo) throws IOException(Code)(Java Doc)
public void destroy()(Code)(Java Doc)
protected void displaySize(StringBuffer buf, int filesize)(Code)(Java Doc)
protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException(Code)(Java Doc)
protected void doHead(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException(Code)(Java Doc)
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException(Code)(Java Doc)
protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
protected File executePartialPut(HttpServletRequest req, Range range, String path) throws IOException(Code)(Java Doc)
protected String getETag(ResourceInfo resourceInfo)(Code)(Java Doc)
protected String getRelativePath(HttpServletRequest request)(Code)(Java Doc)
protected DirContext getResources()(Code)(Java Doc)
public void init() throws ServletException(Code)(Java Doc)
protected String normalize(String path)(Code)(Java Doc)
protected Range parseContentRange(HttpServletRequest request, HttpServletResponse response) throws IOException(Code)(Java Doc)
protected Vector parseRange(HttpServletRequest request, HttpServletResponse response, ResourceInfo resourceInfo) throws IOException(Code)(Java Doc)
protected InputStream render(String contextPath, ResourceInfo resourceInfo)(Code)(Java Doc)
protected String renderSize(long size)(Code)(Java Doc)
protected String rewriteUrl(String path)(Code)(Java Doc)
protected void serveResource(HttpServletRequest request, HttpServletResponse response, boolean content) throws IOException, ServletException(Code)(Java Doc)
protected void showRequestInfo(HttpServletRequest req)(Code)(Java Doc)

Methods inherited from javax.servlet.http.HttpServlet
protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
protected void doHead(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
protected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
protected void doTrace(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
protected long getLastModified(HttpServletRequest req)(Code)(Java Doc)
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc)
public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.