blob: 488695c19793dc8af2ab61ddd62278816eb96aae [file] [log] [blame]
Brian O'Connorb876bf12014-10-02 14:59:37 -07001package org.onlab.onos.net.intent;
2
tom95329eb2014-10-06 08:40:06 -07003import org.onlab.onos.net.Link;
4
5import java.util.Collection;
6
Brian O'Connorb876bf12014-10-02 14:59:37 -07007/**
8 * Abstraction of an intent that can be installed into
9 * the underlying system without additional compilation.
10 */
11public interface InstallableIntent extends Intent {
tom95329eb2014-10-06 08:40:06 -070012
13 /**
14 * Returns the collection of links that are required for this installable
15 * intent to exist.
16 *
17 * @return collection of links
18 */
19 // FIXME: replace this with 'NetworkResource'
20 Collection<Link> requiredLinks();
21
Brian O'Connorb876bf12014-10-02 14:59:37 -070022}