Class: Fog::Parsers::Terremark::Shared::GetKeysList
Instance Attribute Summary
Attributes inherited from Base
#response
Instance Method Summary
collapse
#extract_attributes
Methods inherited from Base
#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value
Instance Method Details
#end_element(name) ⇒ Object
27
28
29
30
31
32
33
34
35
|
# File 'lib/fog/terremark/parsers/shared/get_keys_list.rb', line 27
def end_element(name)
case name
when 'Id', 'Href', 'Name', 'IsDefault','FingerPrint'
@key[name] = value
when 'Key'
@response['Keys'] << @key
@key = {}
end
end
|
#reset ⇒ Object
8
9
10
11
|
# File 'lib/fog/terremark/parsers/shared/get_keys_list.rb', line 8
def reset
@response = { 'Keys' => [] }
@key = {}
end
|
#start_element(name, attributes) ⇒ Object
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# File 'lib/fog/terremark/parsers/shared/get_keys_list.rb', line 13
def start_element(name, attributes)
super
case name
when 'Id', 'Href', 'Name', 'IsDefault','FingerPrint'
data = (attributes)
@key[name] = data
when 'Key'
@key = (attributes)
when 'Keys'
keys_list = (attributes)
@response['href'] = keys_list['href']
end
end
|