Class RequestData

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

public class RequestData extends Object implements Serializable
This value object stores request information to be submitted for Request creation.
See Also:
  • Constructor Details

    • RequestData

      public RequestData()
      Constructs a new RequestData object with default constructs.
    • RequestData

      @Deprecated public RequestData(String templateName)
      Deprecated.
      Constructs a new RequestData with the specified Request template name.
      Parameters:
      templateName - Request Template name
    • RequestData

      public RequestData(String requestTemplateName, String justification, Date executionDate, List<Beneficiary> beneficiaries, List<RequestEntity> targetEntities)
      Note: This constructor is only for internal use.

      Constructs a new RequestData with specified Request template name, justification, date to initiate request operation , list of Beneficiary object, list of RequestEntity object. A requestData object is created either with a list of Beneficiary or with a list of RequestEntity object for a Request Template.

      Parameters:
      requestTemplateName - Request Template name
      justification - Justification for request creation
      executionDate - Date to initiate this request operation
      beneficiaries - List of Beneficiaries
      targetEntities - List of RequestEntity
    • RequestData

      public RequestData(Request request)
      This constructor is only for internal use
      Parameters:
      request - Request object
  • Method Details

    • getRequestTemplateName

      @Deprecated public String getRequestTemplateName()
      Deprecated.
      Gets the request template name set with this request
      Returns:
      request template name set with this request
    • setRequestTemplateName

      @Deprecated public void setRequestTemplateName(String templateName)
      Deprecated.
      Sets Request template name to this request
      Parameters:
      templateName - The request template name to be set in this request
    • getJustification

      public String getJustification()
      Gets the justification for creating this request
      Returns:
      justification of this request
    • setJustification

      public void setJustification(String justification)
      Sets justification to this request
      Parameters:
      justification - The justification to create this request
    • getExecutionDate

      public Date getExecutionDate()
      Gets the requested operation initiated date
      Returns:
      The requested operation initiated date
    • setExecutionDate

      public void setExecutionDate(Date date)
      Sets the date on which this request starts the initiation of request
      Parameters:
      date - The date on which requested operation needs initiation
    • getBeneficiaries

      public List<Beneficiary> getBeneficiaries()
      Gets the list of all Beneficiary details set with this request
      Returns:
      A list of Beneficiary
    • setBeneficiaries

      public void setBeneficiaries(List<Beneficiary> beneficiaries)
      Sets a list of beneficiary objects to this RequestData. A RequestData object needs to be set with a list beneficiary objects, only when the request type is one of the below:
      • Assign Roles
      • Self Assign Roles
      • Remove from Roles
      • Self Remove Roles
      • Provision Resource
      • Self-Request Resource
      • Modify Provisioned Resource
      • Self Modify Provisioned Resource
      • Enable Provisioned Resource
      • Disable Provisioned Resource
      • De-provision Resource
      • Self De-Provision Resource

      Setting the beneficiary object is meant to create/delete/modify an one-to-one relationship between beneficiary (an user) and entities which can be Resource, Resource instance or Role. For the above request types, RequestData can be set with a list of beneficiaries and each beneficiary can have a list of entities associated with the relationship.

      Parameters:
      beneficiaries - A list of Beneficiary objects
    • getTargetEntities

      public List<RequestEntity> getTargetEntities()
      Gets a list of request entity objects set with this request. RequestEntity (refer to as "Target Entity") object represents the target "User" or "Role" entity on which requested operation is performed.
      Returns:
      A list of RequestEntity
    • setTargetEntities

      public void setTargetEntities(List<RequestEntity> targetEntities)
      Sets a list of RequestEntity object to this request. RequestEntity (refer to as "Target Entity") object represents the target "User" or "Role" entity on which requested operation is performed. A RequestData object needs to be set with a list of RequestEntity objects, only when the request type is one of the below:
      • Create User
      • Self-Register User
      • Delete User
      • Enable User
      • Disable User
      • Modify User Profile
      • Modify Self Profile
      • Create Role
      • Delete Role
      • Modify Role

      Requested operation is directly performed on the target RequestEntity. For the above request types, RequestData can be set with a list of Target Entities.

      Parameters:
      targetEntities - List of RequestEntity object
    • getTemplateAttributes

      public List<RequestTemplateAttribute> getTemplateAttributes()
      Gets the list of additional attributes defined in Request template set in this request
      Returns:
      List of RequestTemplateAttributes
    • setTemplateAttributes

      public void setTemplateAttributes(List<RequestTemplateAttribute> templateAttributes)
      Sets addition attributes to this request. These additional attributes are defined at request template and is used only for reporting purpose.
      Parameters:
      templateAttributes - List of RequestTemplateAttribute
    • isBulkRequest

      public boolean isBulkRequest()
    • getAdditionalAttributes

      public List<RequestTemplateAttribute> getAdditionalAttributes()
      Gets the list of additional attributes defined in the requestdata
      Returns:
      List of RequestTemplateAttributes
    • setAdditionalAttributes

      public void setAdditionalAttributes(List<RequestTemplateAttribute> additionalAttributes)
      Sets addition attributes to the requestdata
      Parameters:
      templateAttributes - List of RequestTemplateAttribute
    • setEndingDate

      public void setEndingDate(Date date)
    • getEndingDate

      public Date getEndingDate()
    • setPolicyViolationToken

      public void setPolicyViolationToken(String policyViolationToken)
    • getPolicyViolationToken

      public String getPolicyViolationToken()