blob: c272dc22c7820bf0f7c0279412845aa48a6953b3 [file] [log] [blame]
Sho SHIMIZU11812fc2014-08-21 14:51:17 -07001package net.onrc.onos.core.newintent;
2
3import net.onrc.onos.api.newintent.IntentExtensionService;
4import net.onrc.onos.api.newintent.IntentService;
5
6/**
7 * An interface, which mixes Intent Service and Intent Extension Service.
8 */
9public interface IntentManager extends IntentService, IntentExtensionService {
10}