Interface SandboxApplicationChangeEventListener
- All Known Implementing Classes:
DefaultSandboxApplicationChangeEventListener
public interface SandboxApplicationChangeEventListener
Defines the contract for a class that awaits the transmission of
ApplicationChangedEvents so that the sandbox service can respond appropriately. Typically, this
will delegate the actual handling of specific types of events to
SandboxApplicationChangeEventListeners.- Author:
- Nathan Moore (nathandmoore)
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandle(com.broadleafcommerce.data.tracking.core.tenant.service.ApplicationChangedEvent event) Responsible for executing actions in response to anApplicationChangedEvent.
-
Method Details
-
handle
void handle(@NonNull com.broadleafcommerce.data.tracking.core.tenant.service.ApplicationChangedEvent event) Responsible for executing actions in response to anApplicationChangedEvent. Implementations should mark this method with@EventListener.- Parameters:
event- anApplicationChangedEventwith information about a changedApplication
-