Record Class IdFMEmailVerificationData
java.lang.Object
java.lang.Record
com.io7m.idstore.server.internal.freemarker.IdFMEmailVerificationData
- Record Components:
productTitle- The product titleverification- The verificationhost- The hostuserAgent- The user agentlinkAllow- The link to allow verificationlinkDeny- The link to deny verification
- All Implemented Interfaces:
IdFMDataModelType
public record IdFMEmailVerificationData(String productTitle, IdEmailVerification verification, String host, String userAgent, URI linkAllow, URI linkDeny)
extends Record
implements IdFMDataModelType
Data for email verification templates.
-
Constructor Summary
ConstructorsConstructorDescriptionIdFMEmailVerificationData(String productTitle, IdEmailVerification verification, String host, String userAgent, URI linkAllow, URI linkDeny) Data for email verification 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 thelinkAllowrecord component.linkDeny()Returns the value of thelinkDenyrecord component.Returns the value of theproductTitlerecord component.final StringtoString()Returns a string representation of this record class.Returns the value of theuserAgentrecord component.Returns the value of theverificationrecord component.
-
Constructor Details
-
IdFMEmailVerificationData
public IdFMEmailVerificationData(String productTitle, IdEmailVerification verification, String host, String userAgent, URI linkAllow, URI linkDeny) Data for email verification templates.- Parameters:
productTitle- The product titleverification- The verificationhost- The hostuserAgent- The user agentlinkAllow- The link to allow verificationlinkDeny- The link to deny verification
-
-
Method Details
-
toTemplateHash
- Specified by:
toTemplateHashin interfaceIdFMDataModelType- Returns:
- The data as a freemarker template hash
-
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). -
productTitle
Returns the value of theproductTitlerecord component.- Returns:
- the value of the
productTitlerecord component
-
verification
Returns the value of theverificationrecord component.- Returns:
- the value of the
verificationrecord component
-
host
Returns the value of thehostrecord component.- Returns:
- the value of the
hostrecord component
-
userAgent
Returns the value of theuserAgentrecord component.- Returns:
- the value of the
userAgentrecord component
-
linkAllow
Returns the value of thelinkAllowrecord component.- Returns:
- the value of the
linkAllowrecord component
-
linkDeny
Returns the value of thelinkDenyrecord component.- Returns:
- the value of the
linkDenyrecord component
-