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
EventHandlingProcessors. The EventHandlingProperties.ProcessorSettings defined within this class enable overriding of the
built-in defaults.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordConfiguration settings for an instance ofEventHandlingProcessor. -
Constructor Summary
ConstructorsConstructorDescriptionEventHandlingProperties(EventHandlingProperties.ProcessorSettings standard, Map<String, EventHandlingProperties.ProcessorSettings> groups) Creates an instance of aEventHandlingPropertiesrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.groups()Returns the value of thegroupsrecord component.final inthashCode()Returns a hash code value for this object.standard()Returns the value of thestandardrecord component.final StringtoString()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 aEventHandlingPropertiesrecord 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 thestandardrecord component.- Returns:
- the value of the
standardrecord component
-
groups
Returns the value of thegroupsrecord component.- Returns:
- the value of the
groupsrecord component
-