Interface EventHandlingComponentsConfigurer.ComponentsPhase
- All Known Subinterfaces:
EventHandlingComponentsConfigurer.AdditionalComponentPhase,EventHandlingComponentsConfigurer.RequiredComponentPhase
- All Known Implementing Classes:
DefaultEventHandlingComponentsConfigurer
- Enclosing interface:
EventHandlingComponentsConfigurer
public static interface EventHandlingComponentsConfigurer.ComponentsPhase
Phase that allows configuring event handling components.
-
Method Summary
Modifier and TypeMethodDescriptionautodetected(ComponentBuilder<Object> handlingComponentBuilder) Configures an auto-detected event handling component.declarative(ComponentBuilder<EventHandlingComponent> handlingComponentBuilder) Configures a single event handling component.
-
Method Details
-
declarative
@Nonnull EventHandlingComponentsConfigurer.AdditionalComponentPhase declarative(@Nonnull ComponentBuilder<EventHandlingComponent> handlingComponentBuilder) Configures a single event handling component.- Parameters:
handlingComponentBuilder- The component to configure.- Returns:
- The complete phase for decoration and finalization.
-
autodetected
@Nonnull default EventHandlingComponentsConfigurer.AdditionalComponentPhase autodetected(@Nonnull ComponentBuilder<Object> handlingComponentBuilder) Configures an auto-detected event handling component.- Parameters:
handlingComponentBuilder- The component builder.- Returns:
- The additional component phase for further configuration.
-