Class RelationshipImpl

java.lang.Object
oracle.iam.identity.vo.RelationshipImpl
All Implemented Interfaces:
Serializable, Relationship
Direct Known Subclasses:
OrgUserRelationship, RoleConsolidation, RoleGrant, RoleRelationship

public abstract class RelationshipImpl extends Object implements Relationship
See Also:
  • Constructor Details

  • Method Details

    • getId1Entity

      public Identity getId1Entity()
      Description copied from interface: Relationship
      Returns the first identity.
      Specified by:
      getId1Entity in interface Relationship
      Returns:
      Identity
    • setId1Entity

      public void setId1Entity(Identity id1)
      Description copied from interface: Relationship
      Sets the first identity.
      Specified by:
      setId1Entity in interface Relationship
      Parameters:
      id1 - the first identity
    • getId2Entity

      public Identity getId2Entity()
      Description copied from interface: Relationship
      Returns the second identity.
      Specified by:
      getId2Entity in interface Relationship
      Returns:
      Identity
    • setId2Entity

      public void setId2Entity(Identity id2)
      Description copied from interface: Relationship
      Sets the second identity
      Specified by:
      setId2Entity in interface Relationship
      Parameters:
      id2 - the second identity
    • getID1

      public String getID1()
      Description copied from interface: Relationship
      Provides a UID of the first identity.
      Specified by:
      getID1 in interface Relationship
      Returns:
      a UID of the first identity.
    • getID2

      public String getID2()
      Description copied from interface: Relationship
      Provides a UID of the second identity.
      Specified by:
      getID2 in interface Relationship
      Returns:
      a UID of the second identity.
    • setAttribute

      public void setAttribute(String attr, Object val)
      Description copied from interface: Relationship
      Adds the attribute attr and it's value val.
      Specified by:
      setAttribute in interface Relationship
      Parameters:
      attr - The attribute to be added.
      val - The value of the attribute.
    • getAttribute

      public Object getAttribute(String attr)
      Description copied from interface: Relationship
      Get the value of the specified attribute attr.
      Specified by:
      getAttribute in interface Relationship
      Parameters:
      attr - The attribute whose value is to be returned.
      Returns:
      The value of the attribute. null if the attribute is not present.
    • getAttributes

      public Map<String,Object> getAttributes()
      Description copied from interface: Relationship
      Provides a map of all attribute-value pair of this identity.
      Specified by:
      getAttributes in interface Relationship
      Returns:
      A map of all attribute-value pair of this identity.
    • getAttributeNames

      public Set<String> getAttributeNames()
      Description copied from interface: Relationship
      Provides a set of all the attribute names.
      Specified by:
      getAttributeNames in interface Relationship
      Returns:
      A set of all the attribute names.
    • toString

      public String toString()
      Description copied from interface: Relationship
      Returns the string representation of this Relationship.
      Specified by:
      toString in interface Relationship
      Overrides:
      toString in class Object
      Returns:
      The string representation of this Relationship.