Package oracle.iam.request.vo
Class RequestEntity
java.lang.Object
oracle.iam.request.vo.RequestEntity
- All Implemented Interfaces:
Serializable
This is the value object that stores User or Role entity details associated with a request. This object needs to be associated with a request only for following request types:
- Create User
- Self-Register User
- Delete User
- Enable User
- Disable User
- Modify User Profile
- Modify Self Profile
- Create Role
- Delete Role
- Modify Role
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the additional data associated with this RequestEntityGets the request data associated with this RequestEntity.Gets the associated entity key set for this object.Gets Role name in case of Role based request type, otherwise null.Deprecated.getRequestEntityAttribute
(String attributeName) Gets a list of entity attributes from the request data.Returns the enum equivalent of request entity type i.e User/Role/Resourcevoid
setAdditionalEntityData
(List<RequestEntityAttribute> additionalAttributes) Set additional data specific to the entityvoid
setEntityData
(List<RequestEntityAttribute> entityAttributes) Sets the Request data for this RequestEntity.void
setEntityKey
(String entityKey) Sets the entity key for this RequestEntity.void
setEntitySubType
(String entitySubType) Sets entity name associated with the entity.Only in case of Role based request type,set this value to Role name.void
setEntityType
(String entityType) Deprecated.use the setEntityType method with OIMType as input parameter.void
setOperation
(String operation) void
setRequestEntityType
(OIMType entityType) Sets the request entity type i.e User/Role/Resource from the given OIMType
-
Field Details
-
USER_ENTITY_TYPE
A constant for User entity-type.- See Also:
-
ROLE_ENTITY_TYPE
A constant for Role entity-type.- See Also:
-
-
Constructor Details
-
RequestEntity
public RequestEntity()Constructs RequestEntity object with default construct
-
-
Method Details
-
setEntityType
Deprecated.use the setEntityType method with OIMType as input parameter. This method will be replaced withsetRequestEntityType
Sets the request entity type i.e User/Role- Parameters:
entityType
- Request entity type.
-
getEntityType
Deprecated.Gets the entity-type for this object- Returns:
- Entity-type i.e. "User"/"Role"
-
setRequestEntityType
Sets the request entity type i.e User/Role/Resource from the given OIMType- Parameters:
entityType
- Request entity type. Enums defined in the OIMType
-
getRequestEntityType
Returns the enum equivalent of request entity type i.e User/Role/Resource- Returns:
- enum equivalent of request entity type.
-
setEntityData
Sets the Request data for this RequestEntity. List of RequestEntityAttribute represents the data to be collected by request for the operation, based on the attributes defined in dataset and request type.- Parameters:
entityAttributes
- List of entity attributes objects. Each attribute defined needs to be a valid attribute defined in dataset for the request type and its data-value based on data-type.
-
getEntityData
Gets the request data associated with this RequestEntity. (Note: only entity specific data, and not additional data)- Returns:
- List of entity attribute objects
-
getEntitySubType
Gets Role name in case of Role based request type, otherwise null.- Returns:
- entity sub type.
-
setEntitySubType
Sets entity name associated with the entity.Only in case of Role based request type,set this value to Role name. This value is used to generate request Preview by Request Engine and pass details to SOA.- Parameters:
entitySubType
- Role name incase of Role based request type.
-
getEntityKey
Gets the associated entity key set for this object. For request type that is associated with User entity and non-create, it returns usr_key, and for request type associated with Role entity, it returns ugp_key.For request type that is of create type , it returns null.- Returns:
- entity key i.e. usr_key for User and ugp_key for Role entity, otherwise null.
-
setEntityKey
Sets the entity key for this RequestEntity.- Parameters:
entityKey
- usr_key for User and ugp_key for Role entity, when request type is of non-create type.
-
getRequestEntityAttribute
Gets a list of entity attributes from the request data. These attributes are based on request dataset attributes, for the specific request type, and its associated data-value.- Parameters:
attributeName
- Attribute name based on dataset attribute name .- Returns:
- attribute list of attribute object and its value.
-
setOperation
-
getOperation
-
setAdditionalEntityData
Set additional data specific to the entity- Parameters:
additionalAttributes
- - additional data to be added to the entity
-
getAdditionalEntityData
Gets the additional data associated with this RequestEntity- Returns:
- List of entity attribute objects
-