Package com.avoka.tm.vo.v1
Record Class DeliveryCheckpoint
java.lang.Object
java.lang.Record
com.avoka.tm.vo.v1.DeliveryCheckpoint
- Record Components:
id
- iddeliveryServiceName
- delivery service namedescription
- descriptionname
- namestatus
- status
public record DeliveryCheckpoint(Long id, String deliveryServiceName, String description, String name, String status)
extends Record
DeliveryCheckpoint Object Model
- Since:
- 24.10.0
-
Constructor Summary
ConstructorDescriptionDeliveryCheckpoint
(com.avoka.fc.core.entity.SubmissionDeliveryCheckpoint sdc) DeliveryCheckpoint
(Long id, String deliveryServiceName, String description, String name, String status) Creates an instance of aDeliveryCheckpoint
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedeliveryServiceName
record component.Returns the value of thedescription
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.id()
Returns the value of theid
record component.name()
Returns the value of thename
record component.status()
Returns the value of thestatus
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
DeliveryCheckpoint
public DeliveryCheckpoint(com.avoka.fc.core.entity.SubmissionDeliveryCheckpoint sdc) -
DeliveryCheckpoint
public DeliveryCheckpoint(Long id, String deliveryServiceName, String description, String name, String status) Creates an instance of aDeliveryCheckpoint
record class.- Parameters:
id
- the value for theid
record componentdeliveryServiceName
- the value for thedeliveryServiceName
record componentdescription
- the value for thedescription
record componentname
- the value for thename
record componentstatus
- the value for thestatus
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)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
deliveryServiceName
Returns the value of thedeliveryServiceName
record component.- Returns:
- the value of the
deliveryServiceName
record component
-
description
Returns the value of thedescription
record component.- Returns:
- the value of the
description
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
status
Returns the value of thestatus
record component.- Returns:
- the value of the
status
record component
-