Package com.io7m.idstore.server.api
Record Class IdServerHTTPServiceConfiguration
java.lang.Object
java.lang.Record
com.io7m.idstore.server.api.IdServerHTTPServiceConfiguration
- Record Components:
listenAddress- The listen addresslistenPort- The listen portexternalAddress- The externally visible addresstlsConfiguration- The TLS configuration
- All Implemented Interfaces:
IdServerJSONConfigurationElementType
public record IdServerHTTPServiceConfiguration(String listenAddress, int listenPort, URI externalAddress, IdTLSConfigurationType tlsConfiguration)
extends Record
implements IdServerJSONConfigurationElementType
Configuration for individual HTTP services.
-
Constructor Summary
ConstructorsConstructorDescriptionIdServerHTTPServiceConfiguration(String listenAddress, int listenPort, URI externalAddress, IdTLSConfigurationType tlsConfiguration) Configuration for the part of the server that serves over HTTP. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexternalAddressrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thelistenAddressrecord component.intReturns the value of thelistenPortrecord component.Returns the value of thetlsConfigurationrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdServerHTTPServiceConfiguration
public IdServerHTTPServiceConfiguration(String listenAddress, int listenPort, URI externalAddress, IdTLSConfigurationType tlsConfiguration) Configuration for the part of the server that serves over HTTP.- Parameters:
listenAddress- The listen addresslistenPort- The listen portexternalAddress- The externally visible addresstlsConfiguration- The TLS configuration
-
-
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 '=='. -
listenAddress
Returns the value of thelistenAddressrecord component.- Returns:
- the value of the
listenAddressrecord component
-
listenPort
public int listenPort()Returns the value of thelistenPortrecord component.- Returns:
- the value of the
listenPortrecord component
-
externalAddress
Returns the value of theexternalAddressrecord component.- Returns:
- the value of the
externalAddressrecord component
-
tlsConfiguration
Returns the value of thetlsConfigurationrecord component.- Returns:
- the value of the
tlsConfigurationrecord component
-