value: function removeDataPathLink(resource, path) {
      this._paths = this._paths.filter(function (pathLink) {
        return pathLink.resource != resource || pathLink.path != path;
      });
    }