jsdav-ext
Version:
jsDAV allows you to easily add WebDAV support to a NodeJS application. jsDAV is meant to cover the entire standard, and attempts to allow integration using an easy to understand API.
22 lines (18 loc) • 570 B
JavaScript
/*
* @package jsDAV
* @subpackage DAV
* @copyright Copyright(c) 2011 Ajax.org B.V. <info AT ajax DOT org>
* @author Mike de Boer <info AT mikedeboer DOT nl>
* @license http://github.com/mikedeboer/jsDAV/blob/master/LICENSE MIT License
*/
;
var jsDAV_Property = require("./../property");
var Exc = require("./../../shared/exceptions");
var jsDAV_Property_iHref = module.exports = jsDAV_Property.extend({
/**
* getHref
*
* @return {string}
*/
getHref: function() { throw Exc.notImplementedYet(); }
});