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 booleanequals(Object object)Returnstrueif 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 childrenStringgetDescription()Gets value for attribute descriptionLonggetId()Gets value for attribute idStringgetName()Gets value for attribute namePamPolicyEntitygetPamPolicy()Gets value for attribute pamPolicyVaultFolderEntitygetParent()Gets value for attribute parentBooleangetPersonal()Gets value for attribute personalTenantEntitygetTenant()Gets value for attribute tenantinthashCode()Returns a hash code based on this entity's identifiers.voidsetAccounts(Collection<AccountEntity> accounts)Sets value for attribute accountsvoidsetAcl(Collection<VaultFolderAccessEntity> acl)Sets value for attribute aclvoidsetChildren(Collection<VaultFolderEntity> children)Sets value for attribute childrenvoidsetDescription(String description)Sets value for attribute descriptionvoidsetId(Long id)Sets value for attribute idvoidsetName(String name)Sets value for attribute namevoidsetPamPolicy(PamPolicyEntity pamPolicy)Sets value for attribute pamPolicyvoidsetParent(VaultFolderEntity parent)Sets value for attribute parentvoidsetPersonal(Boolean personal)Sets value for attribute personalvoidsetTenant(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)
Returnstrueif the argument is an VaultFolderEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-