Class: OpenNebula::AclPool
- Inherits:
-
Pool
- Object
- XMLElement
- XMLPool
- Pool
- OpenNebula::AclPool
- Defined in:
- OpenNebula/AclPool.rb
Constant Summary
- ACL_POOL_METHODS =
{ :info => "acl.info", :addrule => "acl.addrule", :delrule => "acl.delrule" }
Constants inherited from Pool
Pool::INFO_ALL, Pool::INFO_GROUP, Pool::INFO_MINE
Instance Method Summary (collapse)
- - (Object) factory(element_xml)
-
- (Object) info
Retrieves the ACL Pool.
-
- (AclPool) initialize(client)
constructor
Class constructor.
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
- (AclPool) initialize(client)
Class constructor
35 36 37 |
# File 'OpenNebula/AclPool.rb', line 35 def initialize(client) super('ACL_POOL','ACL',client) end |
Instance Method Details
- (Object) factory(element_xml)
39 40 41 |
# File 'OpenNebula/AclPool.rb', line 39 def factory(element_xml) OpenNebula::Acl.new(element_xml, @client) end |
- (Object) info
Retrieves the ACL Pool
48 49 50 51 |
# File 'OpenNebula/AclPool.rb', line 48 def info() # Retrieves all the Acls in the pool. super(ACL_POOL_METHODS[:info]) end |