Class AbstractEntity

java.lang.Object
oracle.iam.platform.entitymgr.vo.AbstractEntity
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AbstractFixedEntity, AuditEvent

public abstract class AbstractEntity extends Object implements Serializable
See Also:
  • Constructor Details

    • AbstractEntity

      public AbstractEntity()
      Public constructor to be used by Entity Type Managers
    • AbstractEntity

      public AbstractEntity(String entityId, boolean childEntity)
      Internal constructor used by EntityTypeManagerHelper. Entity Type Managers should use the zero arg constructor ONLY
      Parameters:
      entityId -
      childEntity -
  • Method Details

    • getEntityType

      public abstract String getEntityType()
    • getEntityId

      public String getEntityId()
    • setAttribute

      public void setAttribute(String attrName, Object attrVal)
    • getAttribute

      public Object getAttribute(String attrName)
    • getAttributes

      public HashMap<String,Object> getAttributes()
    • getAttributeNames

      public Set<String> getAttributeNames()
    • isChildEntity

      public boolean isChildEntity()
    • toString

      public String toString()
      Overrides:
      toString in class Object