Package com.io7m.cardant.server.api
Record Class CAServerHTTPServiceConfiguration
java.lang.Object
java.lang.Record
com.io7m.cardant.server.api.CAServerHTTPServiceConfiguration
- Record Components:
listenAddress- The listen addresslistenPort- The listen portexternalAddress- The externally visible addresssessionExpiration- The session expiration duration, if sessions should expiretlsConfiguration- The TLS configuration
public record CAServerHTTPServiceConfiguration(String listenAddress, int listenPort, URI externalAddress, Optional<Duration> sessionExpiration, CATLSConfigurationType tlsConfiguration)
extends Record
Configuration for individual HTTP services.
-
Constructor Summary
ConstructorsConstructorDescriptionCAServerHTTPServiceConfiguration(String listenAddress, int listenPort, URI externalAddress, Optional<Duration> sessionExpiration, CATLSConfigurationType 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 thesessionExpirationrecord component.Returns the value of thetlsConfigurationrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CAServerHTTPServiceConfiguration
public CAServerHTTPServiceConfiguration(String listenAddress, int listenPort, URI externalAddress, Optional<Duration> sessionExpiration, CATLSConfigurationType tlsConfiguration) Configuration for the part of the server that serves over HTTP.- Parameters:
listenAddress- The listen addresslistenPort- The listen portexternalAddress- The externally visible addresssessionExpiration- The session expiration duration, if sessions should expiretlsConfiguration- 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
-
sessionExpiration
Returns the value of thesessionExpirationrecord component.- Returns:
- the value of the
sessionExpirationrecord component
-
tlsConfiguration
Returns the value of thetlsConfigurationrecord component.- Returns:
- the value of the
tlsConfigurationrecord component
-