blob: 95502d3012c7e9799013b2d947a1066b159d6787 [file] [log] [blame]
Brian O'Connorf3d06162014-10-02 15:54:12 -07001package org.onlab.onos.net.intent;
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}