Record Class IdFMEmailPasswordResetData
java.lang.Object
java.lang.Record
com.io7m.idstore.server.service.templating.IdFMEmailPasswordResetData
- Record Components:
productTitle- The product titlereset- The resethost- The hostuserAgent- The user agentlinkConfirm- The link to confirm and select a new password
- All Implemented Interfaces:
IdFMDataModelType
public record IdFMEmailPasswordResetData(String productTitle, IdUserPasswordReset reset, String host, String userAgent, URI linkConfirm)
extends Record
implements IdFMDataModelType
Data for email password reset templates.
-
Constructor Summary
ConstructorsConstructorDescriptionIdFMEmailPasswordResetData(String productTitle, IdUserPasswordReset reset, String host, String userAgent, URI linkConfirm) Data for email password reset templates. -
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.host()Returns the value of thehostrecord component.Returns the value of thelinkConfirmrecord component.Returns the value of theproductTitlerecord component.reset()Returns the value of theresetrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of theuserAgentrecord component.
-
Constructor Details
-
IdFMEmailPasswordResetData
public IdFMEmailPasswordResetData(String productTitle, IdUserPasswordReset reset, String host, String userAgent, URI linkConfirm) Data for email password reset templates.- Parameters:
productTitle- The product titlereset- The resethost- The hostuserAgent- The user agentlinkConfirm- The link to confirm and select a new password
-
-
Method Details
-
toTemplateHash
- Specified by:
toTemplateHashin interfaceIdFMDataModelType- Returns:
- The data as a freemarker template hash
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
productTitle
Returns the value of theproductTitlerecord component.- Returns:
- the value of the
productTitlerecord component
-
reset
-
host
-
userAgent
-
linkConfirm
Returns the value of thelinkConfirmrecord component.- Returns:
- the value of the
linkConfirmrecord component
-