blob: 4d2fc75305eb5345c0558c9e21b82105d8b9add9 [file] [log] [blame]
Toshio Koide066506e2014-02-20 19:52:09 -08001package net.onrc.onos.intent.runtime;
2
3import java.util.HashMap;
4
5import net.onrc.onos.intent.Intent.IntentState;
6
7/**
8 * @author Toshio Koide (t-koide@onlab.us)
9 */
10public class IntentStateList extends HashMap<String, IntentState> {
11 private static final long serialVersionUID = -3674903999581438936L;
12}