blob: d4c630a8d4faf557e211bf0eda16f01a2a8d1936 [file] [log] [blame]
package org.onlab.onos.net.intent;
/**
* Abstraction of an application level intent.
* <p/>
* Make sure that an Intent should be immutable when a new type is defined.
*/
public interface Intent extends BatchOperationTarget {
/**
* Returns the intent identifier.
*
* @return intent identifier
*/
IntentId getId();
}