Class: Fog::Parsers::Terremark::GetTasksList

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/parsers/terremark/get_tasks_list.rb

Instance Method Summary collapse

Methods inherited from Base

#extract_attributes

Instance Method Details

#end_element(name) ⇒ Object



24
25
26
27
28
29
# File 'lib/fog/parsers/terremark/get_tasks_list.rb', line 24

def end_element(name)
  if name == 'Task'
    @response['Tasks'] << @task
    @task = {}
  end
end

#resetObject



5
6
7
8
# File 'lib/fog/parsers/terremark/get_tasks_list.rb', line 5

def reset
  @response = { 'Tasks' => [] }
  @task = {}
end

#start_element(name, attributes) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/fog/parsers/terremark/get_tasks_list.rb', line 10

def start_element(name, attributes)
  super
  case name
    when 'Owner', 'Result'
      data = extract_templates(attributes)
      @task[name] = data
    when 'Task'
      @task = extract_templates(attributes)
    when 'TasksList'
      tasks_list = extract_templates(attributes)
      @response['href'] = tasks_list['href']
  end
end