Package com.aquima.web.api.model
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
ConstructorsConstructorDescriptionTaskExecutionDetails
(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 aTaskExecutionDetails
record class. -
Method Summary
Modifier and TypeMethodDescriptioncom.aquima.interactions.foundation.ApplicationID
Returns the value of theapplicationId
record component.caseId()
Returns the value of thecaseId
record component.caseType()
Returns the value of thecaseType
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.com.aquima.interactions.caseengine.client.model.StartTaskResultModel
Returns the value of thestartTaskResultModel
record component.taskId()
Returns the value of thetaskId
record component.final String
toString()
Returns a string representation of this record class.com.aquima.interactions.project.IUserData
userData()
Returns the value of theuserData
record component.
-
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 aTaskExecutionDetails
record class.- Parameters:
applicationId
- the value for theapplicationId
record componentcaseType
- the value for thecaseType
record componentcaseId
- the value for thecaseId
record componenttaskId
- the value for thetaskId
record componentstartTaskResultModel
- the value for thestartTaskResultModel
record componentuserData
- the value for theuserData
record component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object)
. -
applicationId
public com.aquima.interactions.foundation.ApplicationID applicationId()Returns the value of theapplicationId
record component.- Returns:
- the value of the
applicationId
record component
-
caseType
Returns the value of thecaseType
record component.- Returns:
- the value of the
caseType
record component
-
caseId
Returns the value of thecaseId
record component.- Returns:
- the value of the
caseId
record component
-
taskId
Returns the value of thetaskId
record component.- Returns:
- the value of the
taskId
record component
-
startTaskResultModel
public com.aquima.interactions.caseengine.client.model.StartTaskResultModel startTaskResultModel()Returns the value of thestartTaskResultModel
record component.- Returns:
- the value of the
startTaskResultModel
record component
-
userData
public com.aquima.interactions.project.IUserData userData()Returns the value of theuserData
record component.- Returns:
- the value of the
userData
record component
-