public interface

AccessControlEntry

implements Serializable
org.springframework.security.acls.model.AccessControlEntry
Known Indirect Subclasses

Class Overview

Represents an individual permission assignment within an Acl.

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

Summary

Public Methods
abstract Acl getAcl()
abstract Serializable getId()
Obtains an identifier that represents this ACE.
abstract Permission getPermission()
abstract Sid getSid()
abstract boolean isGranting()
Indicates the a Permission is being granted to the relevant Sid.

Public Methods

public abstract Acl getAcl ()

public abstract Serializable getId ()

Obtains an identifier that represents this ACE.

Returns
  • the identifier, or null if unsaved

public abstract Permission getPermission ()

public abstract Sid getSid ()

public abstract boolean isGranting ()

Indicates the a Permission is being granted to the relevant Sid. If false, indicates the permission is being revoked/blocked.

Returns
  • true if being granted, false otherwise