Record Class ConfigurationProperties
java.lang.Object
java.lang.Record
org.nuxeo.ecm.restapi.io.management.ConfigurationProperties
public record ConfigurationProperties(Properties configuredProperties, Properties runtimeProperties, Properties configurationServiceProperties, Properties jvmProperties, Properties miscProperties)
extends Record
- Since:
- 2023
-
Constructor Summary
ConstructorsConstructorDescriptionConfigurationProperties(Properties configuredProperties, Properties runtimeProperties, Properties configurationServiceProperties, Properties jvmProperties, Properties miscProperties) Creates an instance of aConfigurationPropertiesrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconfigurationServicePropertiesrecord component.Returns the value of theconfiguredPropertiesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thejvmPropertiesrecord component.Returns the value of themiscPropertiesrecord component.Returns the value of theruntimePropertiesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ConfigurationProperties
public ConfigurationProperties(Properties configuredProperties, Properties runtimeProperties, Properties configurationServiceProperties, Properties jvmProperties, Properties miscProperties) Creates an instance of aConfigurationPropertiesrecord class.- Parameters:
configuredProperties- the value for theconfiguredPropertiesrecord componentruntimeProperties- the value for theruntimePropertiesrecord componentconfigurationServiceProperties- the value for theconfigurationServicePropertiesrecord componentjvmProperties- the value for thejvmPropertiesrecord componentmiscProperties- the value for themiscPropertiesrecord 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). -
configuredProperties
Returns the value of theconfiguredPropertiesrecord component.- Returns:
- the value of the
configuredPropertiesrecord component
-
runtimeProperties
Returns the value of theruntimePropertiesrecord component.- Returns:
- the value of the
runtimePropertiesrecord component
-
configurationServiceProperties
Returns the value of theconfigurationServicePropertiesrecord component.- Returns:
- the value of the
configurationServicePropertiesrecord component
-
jvmProperties
Returns the value of thejvmPropertiesrecord component.- Returns:
- the value of the
jvmPropertiesrecord component
-
miscProperties
Returns the value of themiscPropertiesrecord component.- Returns:
- the value of the
miscPropertiesrecord component
-