Record Class MessagingErrorResponseDto

java.lang.Object
java.lang.Record
com.finconsgroup.itserr.marketplace.usercommunication.dm.exception.MessagingErrorResponseDto
Record Components:
code - the status code for the response similar to http status
messages - the list of error messages
destination - the destination
requestMessageId - the id to uniquely identify the request that sent the message
stackTrace - the error stack trace

public record MessagingErrorResponseDto(int code, List<String> messages, String destination, String requestMessageId, List<String> stackTrace) extends Record
Dto for sending error responses for web socket messages.

This record contains a list of error messages returned in the response body when an exception occurs.

Example usage:

 List messages = List.of("Error message 1", "Error message 2");
 MessagingErrorResponseDto errorResponseDto = new MessagingErrorResponseDto(400, messages, destination, stackTrace);
 

  • Constructor Details

    • MessagingErrorResponseDto

      public MessagingErrorResponseDto(int code, List<String> messages, String destination, String requestMessageId, List<String> stackTrace)
      Creates an instance of a MessagingErrorResponseDto record class.
      Parameters:
      code - the value for the code record component
      messages - the value for the messages record component
      destination - the value for the destination record component
      requestMessageId - the value for the requestMessageId record component
      stackTrace - the value for the stackTrace 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • code

      public int code()
      Returns the value of the code record component.
      Returns:
      the value of the code record component
    • messages

      public List<String> messages()
      Returns the value of the messages record component.
      Returns:
      the value of the messages record component
    • destination

      public String destination()
      Returns the value of the destination record component.
      Returns:
      the value of the destination record component
    • requestMessageId

      public String requestMessageId()
      Returns the value of the requestMessageId record component.
      Returns:
      the value of the requestMessageId record component
    • stackTrace

      public List<String> stackTrace()
      Returns the value of the stackTrace record component.
      Returns:
      the value of the stackTrace record component