Interface Relationship

All Superinterfaces:
Serializable
All Known Implementing Classes:
OrgUserRelationship, RelationshipImpl, RoleConsolidation, RoleGrant, RoleRelationship

public interface Relationship extends Serializable
  • Method Details

    • getID1

      String getID1()
      Provides a UID of the first identity.
      Returns:
      a UID of the first identity.
    • getID2

      String getID2()
      Provides a UID of the second identity.
      Returns:
      a UID of the second identity.
    • getId1Entity

      Identity getId1Entity()
      Returns the first identity.
      Returns:
      Identity
    • setId1Entity

      void setId1Entity(Identity id1)
      Sets the first identity.
      Parameters:
      id1 - the first identity
    • getId2Entity

      Identity getId2Entity()
      Returns the second identity.
      Returns:
      Identity
    • setId2Entity

      void setId2Entity(Identity id2)
      Sets the second identity
      Parameters:
      id2 - the second identity
    • 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.
    • 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.
    • getAttributes

      Map<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<String> 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 Relationship.
      Overrides:
      toString in class Object
      Returns:
      The string representation of this Relationship.