Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,27 @@
package org.apache.traffic_control.traffic_router.configuration;

public interface ConfigurationListener {
void configurationChanged();

/**
* Called when the configuration has changed.
*
* @param username The username of the user triggering the change.
*/
void configurationChanged()

/**
* Called when an error occurs while processing the configuration change.
*
* @param username The username of the user triggering the change.
* @param error The error message describing the issue.
*/
void configurationError();

/**
* Called when the configuration change is successfully applied.
*
* @param username The username of the user triggering the change.
*/
void configurationApplied();

}