Record Class EnerginetConfiguration
java.lang.Object
java.lang.Record
energy.eddie.regionconnector.dk.energinet.config.EnerginetConfiguration
- Record Components:
customerBasePath- BasePath for the customer api
@ConfigurationProperties("region-connector.dk.energinet")
public record EnerginetConfiguration(String customerBasePath)
extends Record
The main configuration for the Energinet region connector.
-
Constructor Summary
ConstructorsConstructorDescriptionEnerginetConfiguration(String customerBasePath) Creates an instance of aEnerginetConfigurationrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecustomerBasePathrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
EnerginetConfiguration
Creates an instance of aEnerginetConfigurationrecord class.- Parameters:
customerBasePath- the value for thecustomerBasePathrecord component
-
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
customerBasePath
Returns the value of thecustomerBasePathrecord component.- Returns:
- the value of the
customerBasePathrecord component
-