Package oracle.iam.identity.vo
Class RelationshipImpl
java.lang.Object
oracle.iam.identity.vo.RelationshipImpl
- All Implemented Interfaces:
Serializable
,Relationship
- Direct Known Subclasses:
OrgUserRelationship
,RoleConsolidation
,RoleGrant
,RoleRelationship
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetAttribute
(String attr) Get the value of the specified attributeattr
.Provides a set of all the attribute names.Provides a map of all attribute-value pair of this identity.getID1()
Provides a UID of the first identity.Returns the first identity.getID2()
Provides a UID of the second identity.Returns the second identity.void
setAttribute
(String attr, Object val) Adds the attributeattr
and it's valueval
.void
setId1Entity
(Identity id1) Sets the first identity.void
setId2Entity
(Identity id2) Sets the second identitytoString()
Returns the string representation of this Relationship.
-
Constructor Details
-
RelationshipImpl
-
RelationshipImpl
-
-
Method Details
-
getId1Entity
Description copied from interface:Relationship
Returns the first identity.- Specified by:
getId1Entity
in interfaceRelationship
- Returns:
- Identity
-
setId1Entity
Description copied from interface:Relationship
Sets the first identity.- Specified by:
setId1Entity
in interfaceRelationship
- Parameters:
id1
- the first identity
-
getId2Entity
Description copied from interface:Relationship
Returns the second identity.- Specified by:
getId2Entity
in interfaceRelationship
- Returns:
- Identity
-
setId2Entity
Description copied from interface:Relationship
Sets the second identity- Specified by:
setId2Entity
in interfaceRelationship
- Parameters:
id2
- the second identity
-
getID1
Description copied from interface:Relationship
Provides a UID of the first identity.- Specified by:
getID1
in interfaceRelationship
- Returns:
- a UID of the first identity.
-
getID2
Description copied from interface:Relationship
Provides a UID of the second identity.- Specified by:
getID2
in interfaceRelationship
- Returns:
- a UID of the second identity.
-
setAttribute
Description copied from interface:Relationship
Adds the attributeattr
and it's valueval
.- Specified by:
setAttribute
in interfaceRelationship
- Parameters:
attr
- The attribute to be added.val
- The value of the attribute.
-
getAttribute
Description copied from interface:Relationship
Get the value of the specified attributeattr
.- Specified by:
getAttribute
in interfaceRelationship
- Parameters:
attr
- The attribute whose value is to be returned.- Returns:
- The value of the attribute. null if the attribute is not present.
-
getAttributes
Description copied from interface:Relationship
Provides a map of all attribute-value pair of this identity.- Specified by:
getAttributes
in interfaceRelationship
- Returns:
- A
map
of all attribute-value pair of this identity.
-
getAttributeNames
Description copied from interface:Relationship
Provides a set of all the attribute names.- Specified by:
getAttributeNames
in interfaceRelationship
- Returns:
- A set of all the attribute names.
-
toString
Description copied from interface:Relationship
Returns the string representation of this Relationship.- Specified by:
toString
in interfaceRelationship
- Overrides:
toString
in classObject
- Returns:
- The string representation of this Relationship.
-