Record Class UserService.UserServiceContactConfig

java.lang.Object
java.lang.Record
ch.rswk.meta.engine.UserService.UserServiceContactConfig
Enclosing class:
UserService

public static record UserService.UserServiceContactConfig(Map<String,String> emailContent, Map<String,String> emailSubject, @Nullable String emailType, Map<String,String> smsMessage) extends Record
  • Field Details

    • emailContent

      private final Map<String,String> emailContent
      The field for the emailContent record component.
    • emailSubject

      private final Map<String,String> emailSubject
      The field for the emailSubject record component.
    • emailType

      private final @Nullable String emailType
      The field for the emailType record component.
    • smsMessage

      private final Map<String,String> smsMessage
      The field for the smsMessage record component.
  • Constructor Details

    • UserServiceContactConfig

      public UserServiceContactConfig(Map<String,String> emailContent, Map<String,String> emailSubject, @Nullable String emailType, Map<String,String> smsMessage)
      Creates an instance of a UserServiceContactConfig record class.
      Parameters:
      emailContent - the value for the emailContent record component
      emailSubject - the value for the emailSubject record component
      emailType - the value for the emailType record component
      smsMessage - the value for the smsMessage record component
  • Method Details

    • resolve

    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • emailContent

      public Map<String,String> emailContent()
      Returns the value of the emailContent record component.
      Returns:
      the value of the emailContent record component
    • emailSubject

      public Map<String,String> emailSubject()
      Returns the value of the emailSubject record component.
      Returns:
      the value of the emailSubject record component
    • emailType

      public @Nullable String emailType()
      Returns the value of the emailType record component.
      Returns:
      the value of the emailType record component
    • smsMessage

      public Map<String,String> smsMessage()
      Returns the value of the smsMessage record component.
      Returns:
      the value of the smsMessage record component