class Tilia::Dav::Xml::Request::Lock
WebDAV LOCK request parser.
This class parses the {DAV:}lockinfo request, as defined in:
Attributes
Owner of the lock
@var string
Scope of the lock.
Either LockInfo::SHARED or LockInfo::EXCLUSIVE @var int
Public Class Methods
The deserialize method is called during xml parsing.
This method is called statictly, this is because in theory this method may be used as a type of constructor, or factory method.
Often you want to return an instance of the current class, but you are free to return other data as well.
You are responsible for advancing the reader to the next element. Not doing anything will result in a never-ending loop.
If you just want to skip parsing for this element altogether, you can just call reader.next
reader.parse_inner_tree will parse the entire sub-tree, and advance to the next element.
@param Reader reader @return mixed
# File lib/tilia/dav/xml/request/lock.rb, line 43 def self.xml_deserialize(reader) reader.push_context reader.element_map['{DAV:}owner'] = Tilia::Xml::Element::XmlFragment values = Tilia::Xml::Element::KeyValue.xml_deserialize(reader) reader.pop_context instance = new instance.owner = values['{DAV:}owner'] ? values['{DAV:}owner'].xml : nil instance.scope = Locks::LockInfo::SHARED if values.key?('{DAV:}lockscope') values['{DAV:}lockscope'].each do |elem| instance.scope = Locks::LockInfo::EXCLUSIVE if elem['name'] == '{DAV:}exclusive' end end instance end