blob: b239ede27f49b33419cdd34f4e07c99ccf9b63f6 [file] [log] [blame]
Brian O'Connorb876bf12014-10-02 14:59:37 -07001package org.onlab.onos.net.intent;
2
3/**
4 * Abstraction of an application level intent.
5 *
6 * Make sure that an Intent should be immutable when a new type is defined.
7 */
8public interface Intent extends BatchOperationTarget {
9 /**
10 * Returns the intent identifier.
11 *
12 * @return intent identifier
13 */
14 IntentId getId();
15}