Class: OpenNebula::GroupPool
- Inherits:
-
Pool
- Object
- XMLElement
- XMLPool
- Pool
- OpenNebula::GroupPool
- Defined in:
- OpenNebula/GroupPool.rb
Constant Summary
- GROUP_POOL_METHODS =
{ :info => "grouppool.info" }
Constants inherited from Pool
Pool::INFO_ALL, Pool::INFO_GROUP, Pool::INFO_MINE
Instance Method Summary (collapse)
-
- (Object) factory(element_xml)
Factory method to create User objects.
-
- (Object) info
Retrieves all the Groups in the pool.
-
- (GroupPool) initialize(client)
constructor
client a Client object that represents a XML-RPC connection.
Methods inherited from Pool
Methods inherited from XMLPool
Methods inherited from XMLElement
#[], #add_element, #attr, build_xml, #delete_element, #each, #each_xpath, #has_elements?, #initialize_xml, #name, #retrieve_elements, #template_like_str, #template_str, #template_xml, #text, #to_hash, #to_xml
Constructor Details
- (GroupPool) initialize(client)
client a Client object that represents a XML-RPC connection
36 37 38 |
# File 'OpenNebula/GroupPool.rb', line 36 def initialize(client) super('GROUP_POOL','GROUP',client) end |
Instance Method Details
- (Object) factory(element_xml)
Factory method to create User objects
41 42 43 |
# File 'OpenNebula/GroupPool.rb', line 41 def factory(element_xml) OpenNebula::Group.new(element_xml,@client) end |
- (Object) info
Retrieves all the Groups in the pool.
50 51 52 |
# File 'OpenNebula/GroupPool.rb', line 50 def info() super(GROUP_POOL_METHODS[:info]) end |