blob: ea1b1873af2ba3db32aab8c7d58f45c7794e4cdd [file] [log] [blame]
Sho SHIMIZU15ed4fd2014-08-05 14:40:42 -07001package net.onrc.onos.api.newintent;
2
Sho SHIMIZU11812fc2014-08-21 14:51:17 -07003import net.onrc.onos.core.newintent.IntentManager;
4
Sho SHIMIZU15ed4fd2014-08-05 14:40:42 -07005import java.util.List;
6
7/**
8 * Abstraction of an extensible intent service enabled for unit tests.
9 */
Sho SHIMIZU11812fc2014-08-21 14:51:17 -070010public interface TestableIntentService extends IntentManager {
Sho SHIMIZU15ed4fd2014-08-05 14:40:42 -070011
12 List<IntentException> getExceptions();
13
14}