Class: OpenNebula::UserPool
- Inherits:
-
Pool
- Object
- XMLElement
- XMLPool
- Pool
- OpenNebula::UserPool
- Defined in:
- OpenNebula/UserPool.rb
Constant Summary
- USER_POOL_METHODS =
Constants and Class attribute accessors
{ :info => "userpool.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 Users in the pool.
-
- (UserPool) 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
- (UserPool) initialize(client)
client a Client object that represents a XML-RPC connection
35 36 37 |
# File 'OpenNebula/UserPool.rb', line 35 def initialize(client) super('USER_POOL','USER',client) end |
Instance Method Details
- (Object) factory(element_xml)
Factory method to create User objects
40 41 42 |
# File 'OpenNebula/UserPool.rb', line 40 def factory(element_xml) OpenNebula::User.new(element_xml,@client) end |
- (Object) info
Retrieves all the Users in the pool.
49 50 51 |
# File 'OpenNebula/UserPool.rb', line 49 def info() super(USER_POOL_METHODS[:info]) end |