Record Class UpdateLoggingConfig.UpdateLogConfigurationModel
java.lang.Object
java.lang.Record
org.frankframework.console.controllers.UpdateLoggingConfig.UpdateLogConfigurationModel
- Enclosing class:
UpdateLoggingConfig
-
Constructor Summary
ConstructorsConstructorDescriptionUpdateLogConfigurationModel
(String loglevel, Boolean logIntermediaryResults, Boolean enableDebugger, Integer maxMessageLength) Creates an instance of aUpdateLogConfigurationModel
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theenableDebugger
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 thelogIntermediaryResults
record component.loglevel()
Returns the value of theloglevel
record component.Returns the value of themaxMessageLength
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
UpdateLogConfigurationModel
public UpdateLogConfigurationModel(String loglevel, Boolean logIntermediaryResults, Boolean enableDebugger, Integer maxMessageLength) Creates an instance of aUpdateLogConfigurationModel
record class.- Parameters:
loglevel
- the value for theloglevel
record componentlogIntermediaryResults
- the value for thelogIntermediaryResults
record componentenableDebugger
- the value for theenableDebugger
record componentmaxMessageLength
- the value for themaxMessageLength
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)
. -
loglevel
Returns the value of theloglevel
record component.- Returns:
- the value of the
loglevel
record component
-
logIntermediaryResults
Returns the value of thelogIntermediaryResults
record component.- Returns:
- the value of the
logIntermediaryResults
record component
-
enableDebugger
Returns the value of theenableDebugger
record component.- Returns:
- the value of the
enableDebugger
record component
-
maxMessageLength
Returns the value of themaxMessageLength
record component.- Returns:
- the value of the
maxMessageLength
record component
-