Class: OpenNebula::MarketPlaceAppPool
- Inherits:
-
Pool
- Object
- XMLElement
- XMLPool
- Pool
- OpenNebula::MarketPlaceAppPool
- Defined in:
- lib/opennebula/marketplaceapp_pool.rb
Constant Summary collapse
- MARKETPLACEAPP_POOL_METHODS =
Constants and Class attribute accessors
{ :info => "marketapppool.info" }
Constants inherited from Pool
Pool::INFO_ALL, Pool::INFO_GROUP, Pool::INFO_MINE, Pool::INFO_PRIMARY_GROUP, Pool::PAGINATED_POOLS
Instance Attribute Summary
Attributes inherited from Pool
Instance Method Summary collapse
-
#factory(element_xml) ⇒ Object
Factory method to create MarketPlaceApp objects.
-
#info(*args) ⇒ Object
(also: #info!)
Retrieves all or part of the Images in the pool.
- #info_all ⇒ Object (also: #info_all!)
- #info_group ⇒ Object (also: #info_group!)
- #info_mine ⇒ Object (also: #info_mine!)
-
#initialize(client, user_id = -1)) ⇒ MarketPlaceAppPool
constructor
client
a Client object that represents a XML-RPC connection.
Methods inherited from Pool
#each, #each_page, #each_page_delete, #each_with_xpath, #get_hash, #get_page, #info_paginated, #is_paginated?, #loop_page, #to_str
Methods inherited from XMLPool
Methods inherited from XMLElement
#[], #add_element, #attr, build_xml, #delete_element, #each, #each_xpath, #element_xml, #has_elements?, #initialize_xml, #name, #retrieve_elements, #retrieve_xmlelements, #set_content, #template_like_str, #template_str, #template_xml, #text, #to_hash, #to_xml, #xml_nil?
Constructor Details
#initialize(client, user_id = -1)) ⇒ MarketPlaceAppPool
client
a Client object that represents a XML-RPC connection
35 36 37 38 39 |
# File 'lib/opennebula/marketplaceapp_pool.rb', line 35 def initialize(client, user_id=-1) super('MARKETPLACEAPP_POOL','MARKETPLACEAPP', client) @user_id = user_id end |
Instance Method Details
#factory(element_xml) ⇒ Object
Factory method to create MarketPlaceApp objects
42 43 44 |
# File 'lib/opennebula/marketplaceapp_pool.rb', line 42 def factory(element_xml) OpenNebula::MarketPlaceApp.new(element_xml, @client) end |
#info(*args) ⇒ Object Also known as: info!
Retrieves all or part of the Images in the pool.
51 52 53 54 55 56 57 58 |
# File 'lib/opennebula/marketplaceapp_pool.rb', line 51 def info(*args) case args.size when 0 info_filter(MARKETPLACEAPP_POOL_METHODS[:info],@user_id,-1,-1) when 3 info_filter(MARKETPLACEAPP_POOL_METHODS[:info],args[0],args[1],args[2]) end end |
#info_all ⇒ Object Also known as: info_all!
60 61 62 |
# File 'lib/opennebula/marketplaceapp_pool.rb', line 60 def info_all() return super(MARKETPLACEAPP_POOL_METHODS[:info]) end |
#info_group ⇒ Object Also known as: info_group!
68 69 70 |
# File 'lib/opennebula/marketplaceapp_pool.rb', line 68 def info_group() return super(MARKETPLACEAPP_POOL_METHODS[:info]) end |
#info_mine ⇒ Object Also known as: info_mine!
64 65 66 |
# File 'lib/opennebula/marketplaceapp_pool.rb', line 64 def info_mine() return super(MARKETPLACEAPP_POOL_METHODS[:info]) end |