Module Spiff_Guard :: Class Acl

Class Acl



object --+
         |
        Acl

Instance Methods
 
__init__(self, actor_id, action, resource_id, permit=False, inherited=False)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
__str__(self)
str(x)
 
set_id(self, id)
 
get_id(self)
 
set_actor_id(self, actor_id)
 
get_actor_id(self)
 
set_action(self, action)
 
get_action(self)
 
set_resource_id(self, resource_id)
 
get_resource_id(self)
 
set_permit(self, permit)
 
get_permit(self)
 
set_inherited(self, inherited=True)
Defines whether the Acl was inherited from a parent actor.
 
get_inherited(self)
Returns True if the Acl was inherited from a parent actor.

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__

Properties

Inherited from object: __class__

Method Details

__init__(self, actor_id, action, resource_id, permit=False, inherited=False)
(Constructor)

 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

 
str(x)
Overrides: object.__str__
(inherited documentation)