Bug 27483 - Request for aclfindMethod() convenience method
Summary: Request for aclfindMethod() convenience method
Status: NEW
Alias: None
Product: Slide
Classification: Unclassified
Component: WebDAV client (show other bugs)
Version: Nightly
Hardware: All other
: P3 enhancement (vote)
Target Milestone: ---
Assignee: Slide Developer List
URL:
Keywords:
Depends on:
Blocks: 31521
  Show dependency tree
 
Reported: 2004-03-05 19:42 UTC by Jim Myers
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jim Myers 2004-03-05 19:42:17 UTC
We've found a parameterless aclfindMethod that defaults to working on the 
current resource, analogous to other paramaterless methods, to be useful. 
Could one be added to Slide?

org.apache.webdav.lib.WebdavResource ~ line 2107

    /**
     * Return the <code>AclProperty</code> for the current resource
     *
     * @param path the server relative path of the resource to request
     * @return acl property, null if the server doesn't respond with
     * <code>AclProperty</code>
     */
     public AclProperty aclfindMethod()
     throws HttpException, IOException {
       thisResource = true;
       return aclfindMethod(httpURL.getPathQuery());
     }