Package org.openiam.base.domain
Class AbstractAttributeEntity
- java.lang.Object
-
- org.openiam.base.domain.KeyEntity
-
- org.openiam.base.domain.AbstractKeyNameEntity
-
- org.openiam.base.domain.AbstractAttributeEntity
-
- All Implemented Interfaces:
Serializable,BaseIdentity
- Direct Known Subclasses:
GroupAttributeEntity,LoginAttributeEntity,OrganizationAttributeEntity,OTPProviderAttributeEntity,ResourcePropEntity,RoleAttributeEntity,UserAttributeEntity
@MappedSuperclass public abstract class AbstractAttributeEntity extends AbstractKeyNameEntity
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.openiam.base.domain.AbstractKeyNameEntity
name
-
-
Constructor Summary
Constructors Constructor Description AbstractAttributeEntity()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddValue(String value)booleancontainsValue(String value)StringgetFirstValue()abstract StringgetParentId()abstract List<String>getValues()booleanhasValues()booleanisMultivalued()Deprecated.voidoverwrite(String value)abstract voidsetParentId(String id)abstract voidsetValues(List<String> values)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.openiam.base.BaseIdentity
getId, setId
-
-
-
-
Method Detail
-
getParentId
public abstract String getParentId()
-
setParentId
public abstract void setParentId(String id)
-
overwrite
public void overwrite(String value)
-
addValue
public void addValue(String value)
-
containsValue
public boolean containsValue(String value)
-
hasValues
public boolean hasValues()
-
getFirstValue
public String getFirstValue()
-
isMultivalued
@Deprecated public boolean isMultivalued()
Deprecated.
-
-