Qore xml Module 1.8.1
Loading...
Searching...
No Matches
WebDavHandler::AbstractWebDavPropertyHandler Class Referenceabstract

The abstract WebDavHandler property handler class interface. More...

#include <AbstractWebDavPropertyHandler.qc.dox.h>

Inheritance diagram for WebDavHandler::AbstractWebDavPropertyHandler:
WebDavHandler::InMemoryWebDavPropertyHandler

Public Member Methods

abstract auto get (string resource, string ns=DavNs, list< string > prop_names)
 Retrieves the value(s) of the given properties in the given namespace.
 
abstract auto get (string resource, string ns=DavNs, string prop_name)
 Retrieves the value(s) of the given properties in the given namespace.
 
abstract *hash< string, hash< auto > > getAll (string resource)
 Returns all properties in all namespaces. More...
 
abstract *hash< auto > getAllInNamespace (string resource, string ns)
 Returns all properties in the given namespaces. More...
 
abstract set (string resource, string ns=DavNs, string prop_name, auto value)
 Sets a property value.
 
abstract del (string resource, string ns=DavNs, list< string > prop_names)
 Deletes one or more properties.
 
abstract del (string resource, string ns=DavNs, string prop_name)
 Deletes a property.
 
abstract delAll (string resource)
 Deletes all properties for the given resource.
 
abstract cp (string src_url, string target_url)
 Copies all properties to another target URL.
 
abstract move (string src_url, string target_url)
 Moves properties from one target URL to another.
 

Detailed Description

The abstract WebDavHandler property handler class interface.

Member Function Documentation

◆ getAll()

abstract *hash< string, hash< auto > > WebDavHandler::AbstractWebDavPropertyHandler::getAll ( string  resource)
pure virtual

Returns all properties in all namespaces.

Returns
a hash as NS -> property -> value

Implemented in WebDavHandler::InMemoryWebDavPropertyHandler.

◆ getAllInNamespace()

abstract *hash< auto > WebDavHandler::AbstractWebDavPropertyHandler::getAllInNamespace ( string  resource,
string  ns 
)
pure virtual

Returns all properties in the given namespaces.

Returns
a hash as property -> value

Implemented in WebDavHandler::InMemoryWebDavPropertyHandler.


The documentation for this class was generated from the following file: