1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-20 10:50:08 +03:00

feature #696: Add info_filter method

This commit is contained in:
Daniel Molina 2011-07-04 12:26:43 +02:00
parent 1c1cb98400
commit ec9f9b59f1

View File

@ -63,6 +63,12 @@ module OpenNebula
-1,
-1,
INFO_NOT_DONE)
when 1
info_filter(VM_POOL_METHODS[:info],
args[0],
-1,
-1,
INFO_NOT_DONE)
when 3
info_filter(VM_POOL_METHODS[:info],
args[0],
@ -101,5 +107,11 @@ module OpenNebula
-1,
INFO_NOT_DONE)
end
private
def info_filter(xml_method, who, start_id, end_id, state)
return xmlrpc_info(xml_method, who, start_id, end_id, state)
end
end
end