Package com.soffid.iam.model
Class VaultFolderEntity
- java.lang.Object
-
- com.soffid.iam.model.VaultFolderEntity
-
- Direct Known Subclasses:
VaultFolderEntityImpl
public abstract class VaultFolderEntity extends Object
Entity VaultFolderEntity
-
-
Constructor Summary
Constructors Constructor Description VaultFolderEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an VaultFolderEntity instance and all identifiers for this entity equal the identifiers of the argument entity.Collection<AccountEntity>
getAccounts()
Gets value for attribute accountsCollection<VaultFolderAccessEntity>
getAcl()
Gets value for attribute aclCollection<VaultFolderEntity>
getChildren()
Gets value for attribute childrenString
getDescription()
Gets value for attribute descriptionLong
getId()
Gets value for attribute idString
getName()
Gets value for attribute namePamPolicyEntity
getPamPolicy()
Gets value for attribute pamPolicyVaultFolderEntity
getParent()
Gets value for attribute parentBoolean
getPersonal()
Gets value for attribute personalTenantEntity
getTenant()
Gets value for attribute tenantint
hashCode()
Returns a hash code based on this entity's identifiers.void
setAccounts(Collection<AccountEntity> accounts)
Sets value for attribute accountsvoid
setAcl(Collection<VaultFolderAccessEntity> acl)
Sets value for attribute aclvoid
setChildren(Collection<VaultFolderEntity> children)
Sets value for attribute childrenvoid
setDescription(String description)
Sets value for attribute descriptionvoid
setId(Long id)
Sets value for attribute idvoid
setName(String name)
Sets value for attribute namevoid
setPamPolicy(PamPolicyEntity pamPolicy)
Sets value for attribute pamPolicyvoid
setParent(VaultFolderEntity parent)
Sets value for attribute parentvoid
setPersonal(Boolean personal)
Sets value for attribute personalvoid
setTenant(TenantEntity tenant)
Sets value for attribute tenant
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getDescription
public String getDescription()
Gets value for attribute description
-
setDescription
public void setDescription(String description)
Sets value for attribute description
-
getParent
public VaultFolderEntity getParent()
Gets value for attribute parent
-
setParent
public void setParent(VaultFolderEntity parent)
Sets value for attribute parent
-
getPersonal
public Boolean getPersonal()
Gets value for attribute personal
-
setPersonal
public void setPersonal(Boolean personal)
Sets value for attribute personal
-
getPamPolicy
public PamPolicyEntity getPamPolicy()
Gets value for attribute pamPolicy
-
setPamPolicy
public void setPamPolicy(PamPolicyEntity pamPolicy)
Sets value for attribute pamPolicy
-
getTenant
public TenantEntity getTenant()
Gets value for attribute tenant
-
setTenant
public void setTenant(TenantEntity tenant)
Sets value for attribute tenant
-
getAcl
public Collection<VaultFolderAccessEntity> getAcl()
Gets value for attribute acl
-
setAcl
public void setAcl(Collection<VaultFolderAccessEntity> acl)
Sets value for attribute acl
-
getChildren
public Collection<VaultFolderEntity> getChildren()
Gets value for attribute children
-
setChildren
public void setChildren(Collection<VaultFolderEntity> children)
Sets value for attribute children
-
getAccounts
public Collection<AccountEntity> getAccounts()
Gets value for attribute accounts
-
setAccounts
public void setAccounts(Collection<AccountEntity> accounts)
Sets value for attribute accounts
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an VaultFolderEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-