Record Class IdSessionMessage
java.lang.Object
java.lang.Record
com.io7m.idstore.server.service.sessions.IdSessionMessage
- Record Components:
requestId- The request IDisError-trueif the message is an errorisServerError-trueif the error is a server-side error and not the fault of the usermessageTitle- The message titlemessage- The messagereturnTo- The path to which to return
public record IdSessionMessage(UUID requestId, boolean isError, boolean isServerError, String messageTitle, String message, String returnTo)
extends Record
A message that will be displayed on the message screen.
-
Constructor Summary
ConstructorsConstructorDescriptionIdSessionMessage(UUID requestId, boolean isError, boolean isServerError, String messageTitle, String message, String returnTo) A message that will be displayed on the message screen. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanisError()Returns the value of theisErrorrecord component.booleanReturns the value of theisServerErrorrecord component.message()Returns the value of themessagerecord component.Returns the value of themessageTitlerecord component.Returns the value of therequestIdrecord component.returnTo()Returns the value of thereturnTorecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdSessionMessage
public IdSessionMessage(UUID requestId, boolean isError, boolean isServerError, String messageTitle, String message, String returnTo) A message that will be displayed on the message screen.- Parameters:
requestId- The request IDisError-trueif the message is an errorisServerError-trueif the error is a server-side error and not the fault of the usermessageTitle- The message titlemessage- The messagereturnTo- The path to which to return
-
-
Method Details
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
requestId
-
isError
-
isServerError
public boolean isServerError()Returns the value of theisServerErrorrecord component.- Returns:
- the value of the
isServerErrorrecord component
-
messageTitle
Returns the value of themessageTitlerecord component.- Returns:
- the value of the
messageTitlerecord component
-
message
-
returnTo
-