blob: 27921def61f9dff05443c2fa409c79aeb77d960d [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 */
8public interface TestableIntentService extends IntentService, IntentExtensionService {
9
10 List<IntentException> getExceptions();
11
12}