Package com.io7m.idstore.server.api
Record Class IdServerMailTransportSMTPS
java.lang.Object
java.lang.Record
com.io7m.idstore.server.api.IdServerMailTransportSMTPS
- Record Components:
host- The mail hostport- The port
- All Implemented Interfaces:
IdServerJSONConfigurationElementType,IdServerMailTransportConfigurationType
public record IdServerMailTransportSMTPS(String host, int port)
extends Record
implements IdServerMailTransportConfigurationType
SMTP entirely encapsulated by TLS. Commonly known as SMTPS. Strict validation
of server certificates is enabled. Server certificates must be issued 1) by a
certificate authority in the trust store; and 2) to a subject matching the
identity of the remote SMTP server.
-
Constructor Summary
ConstructorsConstructorDescriptionIdServerMailTransportSMTPS(String host, int port) SMTP entirely encapsulated by TLS. -
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.intport()Returns the value of theportrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdServerMailTransportSMTPS
SMTP entirely encapsulated by TLS. Commonly known as SMTPS. Strict validation of server certificates is enabled. Server certificates must be issued 1) by a certificate authority in the trust store; and 2) to a subject matching the identity of the remote SMTP server.- Parameters:
host- The mail hostport- The port
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
host
Returns the value of thehostrecord component.- Specified by:
hostin interfaceIdServerMailTransportConfigurationType- Returns:
- the value of the
hostrecord component
-
port
public int port()Returns the value of theportrecord component.- Specified by:
portin interfaceIdServerMailTransportConfigurationType- Returns:
- the value of the
portrecord component
-