blob: ea1b1873af2ba3db32aab8c7d58f45c7794e4cdd [file] [log] [blame]
package net.onrc.onos.api.newintent;
import net.onrc.onos.core.newintent.IntentManager;
import java.util.List;
/**
* Abstraction of an extensible intent service enabled for unit tests.
*/
public interface TestableIntentService extends IntentManager {
List<IntentException> getExceptions();
}