Package org.apache.webdav.lib.methods

Examples of org.apache.webdav.lib.methods.AclMethod


    public boolean aclMethod(String path, Ace[] aces)
        throws HttpException, IOException {

        setClient();

        AclMethod method = new AclMethod(URIUtil.encodePath(path));
        generateIfHeader(method);
        for (int i=0; i<aces.length ; i++) {
            Ace ace = aces[i];
            method.addAce(ace);
        }
        int statusCode = client.executeMethod(method);

        setStatusCode(statusCode);
View Full Code Here


    public boolean aclMethod(String path, Ace[] aces)
        throws HttpException, IOException {

        setClient();

        AclMethod method = new AclMethod(URIUtil.encodePath(path));
        generateIfHeader(method);
        for (int i=0; i<aces.length ; i++) {
            Ace ace = aces[i];
            method.addAce(ace);
        }
        int statusCode = client.executeMethod(method);

        setStatusCode(statusCode);
View Full Code Here

TOP

Related Classes of org.apache.webdav.lib.methods.AclMethod

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.