it.could.webdav.methods
Class PROPPATCH

java.lang.Object
  extended byit.could.webdav.methods.PROPPATCH
All Implemented Interfaces:
DAVMethod

public class PROPPATCH
extends Object
implements DAVMethod

WebDAV PROPPATCH metohd implementation.

As this servlet does not handle the creation of custom properties, this method will always fail with a 403 (Forbidden).

Author:
Pier Fumagalli

Constructor Summary
PROPPATCH()
          Create a new PROPPATCH instance.
 
Method Summary
 void process(DAVTransaction transaction, DAVResource resource)
          Process the PROPPATCH method.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PROPPATCH

public PROPPATCH()

Create a new PROPPATCH instance.

Method Detail

process

public void process(DAVTransaction transaction,
                    DAVResource resource)
             throws IOException

Process the PROPPATCH method.

As this servlet does not handle the creation of custom properties, this method will always fail with a 403 (Forbidden).

Specified by:
process in interface DAVMethod
Parameters:
transaction - An object encapsulaing a WebDAV request/response.
resource - The DAVResource to process.
Throws:
IOException - If an I/O error occurred.