Package org.apache.wink.webdav.model

Examples of org.apache.wink.webdav.model.Propstat


        response.getHref().add(getResourceLink(synd));
        multistatus.getResponse().add(response);

        // the request is for all property names
        if (propfind.getPropname() != null) {
            Propstat propstat =
                response.getOrCreatePropstat(Response.Status.OK.getStatusCode(), null, null);
            Prop prop = propstat.getProp();
            // call the abstract method to allow the handler to fill in the
            // property names
            handler.setAllPropertyNames(this, prop, synd);
            // ensure that all property values are empty
            ensurePropertiesAreEmpty(prop);
View Full Code Here

TOP

Related Classes of org.apache.wink.webdav.model.Propstat

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.