Class EventAttributes

java.lang.Object
oracle.iam.reconciliation.api.EventAttributes
All Implemented Interfaces:
Serializable

public class EventAttributes extends Object implements Serializable
Provides attributes of an event which comes for creation into OIM.
See Also:
  • Constructor Details

    • EventAttributes

      public EventAttributes()
    • EventAttributes

      public EventAttributes(boolean eventFinished, String dateFormat, ChangeType changeType, Date actionDate)
      Parameters:
      eventFinished - Indicates whether child data is going to be provided or not. It is set to false if child data is going to be added later to the event. If the eventFinished is true that means event status is set to 'Data Received' otherwise it would be set to 'Event Received'
      dateFormat - format to be used when processing the date. For example "yyyy-mm-dd hh:mm:ss".
      changeType -
      actionDate - A date on which the recon event is required to happen. If its "null" or less then the current system date then the processing is done instantly otherwise diferred till the date is reached
  • Method Details

    • isEventFinished

      public boolean isEventFinished()
    • setEventFinished

      public void setEventFinished(boolean eventFinished)
      Indicates whether child data is going to be provided or not. It is set to false if child data is going to be added later to the event. If the eventFinished is true that means event status is set to 'Data Received' otherwise it would be set to 'Event Received'
      Parameters:
      eventFinished -
    • setDateFormat

      public void setDateFormat(String dateFormat)
      Format to be used when processing the date. For example "yyyy-mm-dd hh:mm:ss".
      Parameters:
      dateFormat -
    • getDateFormat

      public String getDateFormat()
    • getChangeType

      public ChangeType getChangeType()
    • setChangeType

      public void setChangeType(ChangeType changeType)
    • getActionDate

      public Date getActionDate()
    • setActionDate

      public void setActionDate(Date actionDate)
      A date on which the recon event is required to happen. If its "null" or less then the current system date then the processing is done instantly otherwise diferred till the date is reached
      Parameters:
      actionDate -
    • toString

      public String toString()
      Overrides:
      toString in class Object