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