blob: e3548117421d9d1f58d0a2a3ef6ef1401552bbe0 [file] [log] [blame]
Jonathan Hartaa380972014-04-03 10:24:46 -07001package net.onrc.onos.core.intent.runtime;
Toshio Koide066506e2014-02-20 19:52:09 -08002
3import java.util.HashMap;
4
Jonathan Hartaa380972014-04-03 10:24:46 -07005import net.onrc.onos.core.intent.Intent.IntentState;
Toshio Koide066506e2014-02-20 19:52:09 -08006
7/**
8 * @author Toshio Koide (t-koide@onlab.us)
9 */
10public class IntentStateList extends HashMap<String, IntentState> {
Ray Milkey269ffb92014-04-03 14:43:30 -070011 private static final long serialVersionUID = -3674903999581438936L;
Toshio Koide066506e2014-02-20 19:52:09 -080012}