blob: 6d8bda2e95f237fc168a4a59f91289c9e97a52ec [file] [log] [blame]
package net.onrc.onos.api.newintent;
/**
* Listener for {@link IntentEvent intent events}.
*/
public interface IntentEventListener {
/**
* Processes the specified intent event.
*
* @param event the event to process
*/
void event(IntentEvent event);
}