Class AclMemberEntity
- java.lang.Object
-
- org.alfresco.repo.domain.permissions.AclMemberEntity
-
-
Constructor Summary
Constructors Constructor Description AclMemberEntity()Default constructorAclMemberEntity(long aclId, long aceId, int pos)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)LonggetAceId()Get the ACE included in the ACLLonggetAclId()Get the ACL to which the ACE belongsLonggetId()Get the ID for this ACL memberIntegergetPos()Get the position group for this member in the ACL 0 - implies the ACE is on the object >0 - that it is inherited in some way The lower values are checked first so take precedence.LonggetVersion()Get the version for this ACL member - for optimistic lockinginthashCode()voidincrementVersion()voidsetAceId(Long aceId)voidsetAclId(Long aclId)voidsetId(Long id)voidsetPos(Integer pos)Set the position for the ACL-ACE relationshipvoidsetVersion(Long version)StringtoString()
-
-
-
Method Detail
-
getId
public Long getId()
Get the ID for this ACL member
-
setId
public void setId(Long id)
-
getVersion
public Long getVersion()
Get the version for this ACL member - for optimistic locking- Returns:
- - the version
-
setVersion
public void setVersion(Long version)
-
incrementVersion
public void incrementVersion()
-
getAclId
public Long getAclId()
Get the ACL to which the ACE belongs
-
setAclId
public void setAclId(Long aclId)
-
getAceId
public Long getAceId()
Get the ACE included in the ACL
-
setAceId
public void setAceId(Long aceId)
-
getPos
public Integer getPos()
Get the position group for this member in the ACL 0 - implies the ACE is on the object >0 - that it is inherited in some way The lower values are checked first so take precedence.
-
setPos
public void setPos(Integer pos)
Set the position for the ACL-ACE relationship- Parameters:
pos- Integer
-
-