Class AclEntry
- java.lang.Object
-
- org.genesys.blocks.model.EmptyModel
-
- org.genesys.blocks.model.BasicModel
-
- org.genesys.blocks.security.model.AclEntry
-
- All Implemented Interfaces:
Serializable,EntityId,org.springframework.data.domain.Persistable<Long>
@Entity public class AclEntry extends BasicModel
ACL Entry represents permissions ofAclSidon a particular entity (throughAclObjectIdentity).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AclEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetAceOrder()Gets the ace order.AclObjectIdentitygetAclObjectIdentity()Gets the acl object identity.AclSidgetAclSid()Gets the acl sid.intgetMask()Gets the mask.booleanisAuditFailure()Checks if is audit failure.booleanisAuditSuccess()Checks if is audit success.booleanisGranting()Checks if is granting.voidsetAceOrder(long aceOrder)Sets the ace order.voidsetAclObjectIdentity(AclObjectIdentity aclObjectIdentity)Sets the acl object identity.voidsetAclSid(AclSid aclSid)Sets the acl sid.voidsetAuditFailure(boolean auditFailure)Sets the audit failure.voidsetAuditSuccess(boolean auditSuccess)Sets the audit success.voidsetGranting(boolean granting)Sets the granting.voidsetMask(int mask)Sets the mask.StringtoString()-
Methods inherited from class org.genesys.blocks.model.BasicModel
getId, setId
-
Methods inherited from class org.genesys.blocks.model.EmptyModel
equals, hashCode, isNew
-
-
-
-
Method Detail
-
getAclObjectIdentity
public AclObjectIdentity getAclObjectIdentity()
Gets the acl object identity.- Returns:
- the acl object identity
-
setAclObjectIdentity
public void setAclObjectIdentity(AclObjectIdentity aclObjectIdentity)
Sets the acl object identity.- Parameters:
aclObjectIdentity- the new acl object identity
-
getAclSid
public AclSid getAclSid()
Gets the acl sid.- Returns:
- the acl sid
-
setAclSid
public void setAclSid(AclSid aclSid)
Sets the acl sid.- Parameters:
aclSid- the new acl sid
-
getAceOrder
public long getAceOrder()
Gets the ace order.- Returns:
- the ace order
-
setAceOrder
public void setAceOrder(long aceOrder)
Sets the ace order.- Parameters:
aceOrder- the new ace order
-
getMask
public int getMask()
Gets the mask.- Returns:
- the mask
-
setMask
public void setMask(int mask)
Sets the mask.- Parameters:
mask- the new mask
-
isGranting
public boolean isGranting()
Checks if is granting.- Returns:
- true, if is granting
-
setGranting
public void setGranting(boolean granting)
Sets the granting.- Parameters:
granting- the new granting
-
isAuditSuccess
public boolean isAuditSuccess()
Checks if is audit success.- Returns:
- true, if is audit success
-
setAuditSuccess
public void setAuditSuccess(boolean auditSuccess)
Sets the audit success.- Parameters:
auditSuccess- the new audit success
-
isAuditFailure
public boolean isAuditFailure()
Checks if is audit failure.- Returns:
- true, if is audit failure
-
setAuditFailure
public void setAuditFailure(boolean auditFailure)
Sets the audit failure.- Parameters:
auditFailure- the new audit failure
-
toString
public String toString()
- Overrides:
toStringin classEmptyModel
-
-