Class RequestBeneficiaryEntity

java.lang.Object
oracle.iam.request.vo.RequestBeneficiaryEntity
All Implemented Interfaces:
Serializable

public class RequestBeneficiaryEntity extends Object implements Serializable
value object to store entity name and its data
See Also:
  • Constructor Details

    • RequestBeneficiaryEntity

      public RequestBeneficiaryEntity()
  • Method Details

    • setEntityType

      @Deprecated public void setEntityType(String type)
      Deprecated.
      use setEntityType with OIMType as input parameter. This method will be replaced with setRequestEntityType
      Set the type of the request entity. Eg: "User", "Resource"
      Parameters:
      type - of the request entity.
    • getEntityType

      @Deprecated public String getEntityType()
      Deprecated.
      will be replaced with return type OIMType in future getRequestEntityType
      Gets the entity type of this entity
      Returns:
    • setRequestEntityType

      public void setRequestEntityType(OIMType type)
      Sets the request entity type i.e User/Role/Resource from the given OIMType.
      Parameters:
      type - - request entity type. Enums defined in the OIMType
    • getRequestEntityType

      public OIMType getRequestEntityType()
      Returns the enum equivalent of request entity type i.e User/Role/Resource
      Returns:
      enum equivalent of the request entity type.
    • setEntityData

      public void setEntityData(List<RequestBeneficiaryEntityAttribute> entityAttributes)
      Sets the entity attributes.
    • getEntityData

      public List<RequestBeneficiaryEntityAttribute> getEntityData()
      Gets the entity attributes. (Note: only entity specific data, and not additional data)
      Returns:
    • getEntitySubType

      public String getEntitySubType()
      Gets the entity sub type of the request entity. This is applicable only for generic entities like Resource, Role. For Resource entity, entity subtype is the resource name. For Role entity, the entity subtype is the role name.
      Returns:
    • setEntitySubType

      public void setEntitySubType(String entitySubType)
      Sets the entity sub type of the request entity. This is applicable only for generic entities like Resource, Role. For Resource entity, entity sub-type is the resource name. For Role entity, the entity sub-type is the role name.
      Parameters:
      entityName -
    • getEntityKey

      public String getEntityKey()
    • setEntityKey

      public void setEntityKey(String entityKey)
      Sets the key of the entity. Following are the keys for different request types:
      • Provision Resource - key of the resource.
      • Modify Provisioned Resource - resource instance key
      • Enable Provisioned Resource - resource instance key
      • Disable Provisioned Resource - resource instance key
      • Revoke Provisioned Resource - resource instance key
      • Assign Roles, Remove from roles - key of the role
      Parameters:
      entityKey -
    • setOperation

      public void setOperation(String operation)
    • getOperation

      public String getOperation()
    • setAdditionalEntityData

      public void setAdditionalEntityData(List<RequestBeneficiaryEntityAttribute> additionalAttributes)
      Sets the additional entity data associated with this entity
      Parameters:
      addnlEntityattributes - - list of entity attribute objects
    • getAdditionalEntityData

      public List<RequestBeneficiaryEntityAttribute> getAdditionalEntityData()
      Gets the additional entity data associated with this entity
      Returns:
      List of beneficiary entity attribute objects
    • setExtraAttributes

      public void setExtraAttributes(HashMap<String,Object> extraAttributes)
    • getExtraAttributes

      public HashMap<String,Object> getExtraAttributes()