Package oracle.iam.identity.vo
Interface Identity
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
Organization
,Organization
,Proxy
,Role
,RoleCategory
,User
,User
-
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.Provides GUID of the entity.void
setAttribute
(String attr, Object val) Adds the attributeattr
and it's valueval
.toString()
Returns the string representation of this Identity.
-
Method Details
-
setAttribute
Adds the attributeattr
and it's valueval
.- Parameters:
attr
- The attribute to be added.val
- The value of the attribute. This object must be serializable.
-
getAttribute
Get the value of the specified attributeattr
.- 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
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.
-