Record Class EventHandlingProperties
java.lang.Object
java.lang.Record
com.opencqrs.framework.eventhandler.EventHandlingProperties
- Record Components:
standard
- Default settings valid for all event processing groups, unless overridden using "groups".groups
- Event processing group specific override settings. Merged with "standard" settings.
@ConfigurationProperties("opencqrs.event-handling")
public record EventHandlingProperties(EventHandlingProperties.ProcessorSettings standard, Map<String,EventHandlingProperties.ProcessorSettings> groups)
extends Record
ConfigurationProperties
for auto-configured
EventHandlingProcessor
s. The EventHandlingProperties.ProcessorSettings
defined within this class enable overriding of the
built-in defaults.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
Configuration settings for an instance ofEventHandlingProcessor
. -
Constructor Summary
ConstructorsConstructorDescriptionEventHandlingProperties
(EventHandlingProperties.ProcessorSettings standard, Map<String, EventHandlingProperties.ProcessorSettings> groups) Creates an instance of aEventHandlingProperties
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.groups()
Returns the value of thegroups
record component.final int
hashCode()
Returns a hash code value for this object.standard()
Returns the value of thestandard
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
EventHandlingProperties
public EventHandlingProperties(EventHandlingProperties.ProcessorSettings standard, Map<String, EventHandlingProperties.ProcessorSettings> groups) Creates an instance of aEventHandlingProperties
record class.
-
-
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)
. -
standard
Returns the value of thestandard
record component.- Returns:
- the value of the
standard
record component
-
groups
Returns the value of thegroups
record component.- Returns:
- the value of the
groups
record component
-