# File lib/rbovirt.rb, line 144 def initialize(client, id, href) @id, @href = id, href @client = client end
# File lib/rbovirt.rb, line 149 def follow xml = Client::parse_response(OVIRT::client(@client.base_url)[@href].get(@client.auth_header)) object_class = ::OVIRT.const_get(xml.root.name.camelize) object_class.new(@client, (xml.root)) end