Interface Identity

All Superinterfaces:
Serializable
All Known Implementing Classes:
Organization, Organization, Proxy, Role, RoleCategory, User, User

public interface Identity extends Serializable
  • Method Details

    • setAttribute

      void setAttribute(String attr, Object val)
      Adds the attribute attr and it's value val.
      Parameters:
      attr - The attribute to be added.
      val - The value of the attribute. This object must be serializable.
    • getAttribute

      Object getAttribute(String attr)
      Get the value of the specified attribute attr.
      Parameters:
      attr - The attribute whose value is to be returned.
      Returns:
      The value of the attribute. null if the attribute is not present.
    • getEntityId

      String getEntityId()
      Provides GUID of the entity.
      Returns:
      GUID of the entity.
    • getAttributes

      HashMap<String,Object> getAttributes()
      Provides a map of all attribute-value pair of this identity.
      Returns:
      A map of all attribute-value pair of this identity.
    • getAttributeNames

      Set getAttributeNames()
      Provides a set of all the attribute names.
      Returns:
      A set of all the attribute names.
    • toString

      String toString()
      Returns the string representation of this Identity.
      Overrides:
      toString in class Object
      Returns:
      The string representation of this Identity.