Record Class ConfigurationProperties
java.lang.Object
java.lang.Record
org.nuxeo.ecm.restapi.jaxrs.io.management.ConfigurationProperties
public record ConfigurationProperties(Properties configuredProperties, Properties runtimeProperties, Properties configurationServiceProperties, Properties jvmProperties, Properties miscProperties)
extends Record
- Since:
- 2023
-
Constructor Summary
ConstructorDescriptionConfigurationProperties
(Properties configuredProperties, Properties runtimeProperties, Properties configurationServiceProperties, Properties jvmProperties, Properties miscProperties) Creates an instance of aConfigurationProperties
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconfigurationServiceProperties
record component.Returns the value of theconfiguredProperties
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thejvmProperties
record component.Returns the value of themiscProperties
record component.Returns the value of theruntimeProperties
record component.final String
toString()
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 aConfigurationProperties
record class.- Parameters:
configuredProperties
- the value for theconfiguredProperties
record componentruntimeProperties
- the value for theruntimeProperties
record componentconfigurationServiceProperties
- the value for theconfigurationServiceProperties
record componentjvmProperties
- the value for thejvmProperties
record componentmiscProperties
- the value for themiscProperties
record 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 theconfiguredProperties
record component.- Returns:
- the value of the
configuredProperties
record component
-
runtimeProperties
Returns the value of theruntimeProperties
record component.- Returns:
- the value of the
runtimeProperties
record component
-
configurationServiceProperties
Returns the value of theconfigurationServiceProperties
record component.- Returns:
- the value of the
configurationServiceProperties
record component
-
jvmProperties
Returns the value of thejvmProperties
record component.- Returns:
- the value of the
jvmProperties
record component
-
miscProperties
Returns the value of themiscProperties
record component.- Returns:
- the value of the
miscProperties
record component
-