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