Record Class TaskExecutionDetails

java.lang.Object
java.lang.Record
com.aquima.web.api.model.TaskExecutionDetails
All Implemented Interfaces:
Serializable

public record TaskExecutionDetails(com.aquima.interactions.foundation.ApplicationID applicationId, String caseType, String caseId, Long taskId, com.aquima.interactions.caseengine.client.model.StartTaskResultModel startTaskResultModel, com.aquima.interactions.project.IUserData userData) extends Record implements Serializable
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    TaskExecutionDetails(com.aquima.interactions.foundation.ApplicationID applicationId, String caseType, String caseId, Long taskId, com.aquima.interactions.caseengine.client.model.StartTaskResultModel startTaskResultModel, com.aquima.interactions.project.IUserData userData)
    Creates an instance of a TaskExecutionDetails record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    com.aquima.interactions.foundation.ApplicationID
    Returns the value of the applicationId record component.
    Returns the value of the caseId record component.
    Returns the value of the caseType record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    com.aquima.interactions.caseengine.client.model.StartTaskResultModel
    Returns the value of the startTaskResultModel record component.
    Returns the value of the taskId record component.
    final String
    Returns a string representation of this record class.
    com.aquima.interactions.project.IUserData
    Returns the value of the userData record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • TaskExecutionDetails

      public TaskExecutionDetails(com.aquima.interactions.foundation.ApplicationID applicationId, String caseType, String caseId, Long taskId, com.aquima.interactions.caseengine.client.model.StartTaskResultModel startTaskResultModel, com.aquima.interactions.project.IUserData userData)
      Creates an instance of a TaskExecutionDetails record class.
      Parameters:
      applicationId - the value for the applicationId record component
      caseType - the value for the caseType record component
      caseId - the value for the caseId record component
      taskId - the value for the taskId record component
      startTaskResultModel - the value for the startTaskResultModel record component
      userData - the value for the userData record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • applicationId

      public com.aquima.interactions.foundation.ApplicationID applicationId()
      Returns the value of the applicationId record component.
      Returns:
      the value of the applicationId record component
    • caseType

      public String caseType()
      Returns the value of the caseType record component.
      Returns:
      the value of the caseType record component
    • caseId

      public String caseId()
      Returns the value of the caseId record component.
      Returns:
      the value of the caseId record component
    • taskId

      public Long taskId()
      Returns the value of the taskId record component.
      Returns:
      the value of the taskId record component
    • startTaskResultModel

      public com.aquima.interactions.caseengine.client.model.StartTaskResultModel startTaskResultModel()
      Returns the value of the startTaskResultModel record component.
      Returns:
      the value of the startTaskResultModel record component
    • userData

      public com.aquima.interactions.project.IUserData userData()
      Returns the value of the userData record component.
      Returns:
      the value of the userData record component