Symfony2 API
Interface

Symfony\Component\Security\Acl\Model\EntryInterface

interface EntryInterface implements Serializable

This class represents an individual entry in the ACL list.

Instances MUST be immutable, as they are returned by the ACL and should not
allow client modification.

Methods

AclInterface getAcl()

The ACL this ACE is associated with.

integer getId()

The primary key of this ACE

integer getMask()

The permission mask of this ACE

SecurityIdentityInterface getSecurityIdentity()

The security identity associated with this ACE

string getStrategy()

The strategy for comparing masks

Boolean isGranting()

Returns whether this ACE is granting, or denying

Details

at line 29
public AclInterface getAcl()

The ACL this ACE is associated with.

Return Value

AclInterface

at line 36
public integer getId()

The primary key of this ACE

Return Value

integer

at line 43
public integer getMask()

The permission mask of this ACE

Return Value

integer

at line 50
public SecurityIdentityInterface getSecurityIdentity()

The security identity associated with this ACE

at line 57
public string getStrategy()

The strategy for comparing masks

Return Value

string

at line 64
public Boolean isGranting()

Returns whether this ACE is granting, or denying

Return Value

Boolean