blob: 6d8bda2e95f237fc168a4a59f91289c9e97a52ec [file] [log] [blame]
Sho SHIMIZU15ed4fd2014-08-05 14:40:42 -07001package net.onrc.onos.api.newintent;
2
3/**
4 * Listener for {@link IntentEvent intent events}.
5 */
6public interface IntentEventListener {
7 /**
8 * Processes the specified intent event.
9 *
10 * @param event the event to process
11 */
12 void event(IntentEvent event);
13}