Package com.adito.vfs.webdav.methods

Examples of com.adito.vfs.webdav.methods.DELETE


    /**
     *
     */
    public void initialiseProcessor() {
        this.methods = new HashMap();
        this.methods.put("DELETE", new DELETE());
        this.methods.put("GET", new GET());
        this.methods.put("HEAD", new HEAD());
        this.methods.put("MKCOL", new MKCOL());
        this.methods.put("MOVE", new MOVE());
        this.methods.put("OPTIONS", new OPTIONS());
View Full Code Here

TOP

Related Classes of com.adito.vfs.webdav.methods.DELETE

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.