module Tilia::Dav::INode

The INode interface is the base interface, and the parent class of both ICollection and IFile

Public Instance Methods

delete() click to toggle source

Deleted the current node

@return void

# File lib/tilia/dav/i_node.rb, line 8
def delete
end
last_modified() click to toggle source

Returns the last modification time, as a unix timestamp

@return int

# File lib/tilia/dav/i_node.rb, line 29
def last_modified
end
name() click to toggle source

Returns the name of the node.

This is used to generate the url.

@return string

# File lib/tilia/dav/i_node.rb, line 16
def name
end
name=(name) click to toggle source

Renames the node

@param string name The new name @return void

# File lib/tilia/dav/i_node.rb, line 23
def name=(name)
end