blob: 7691c68b5dc2d9e84736c8b056665870ad43b59b [file] [log] [blame]
Jonathan Hartaa380972014-04-03 10:24:46 -07001package net.onrc.onos.core.intent;
Toshio Koide4f308732014-02-18 15:19:48 -08002
Toshio Koidedf2eab92014-02-20 11:24:59 -08003import java.util.LinkedList;
Toshio Koide4f308732014-02-18 15:19:48 -08004
Toshio Koided9fa2a82014-02-19 17:35:18 -08005/**
6 * @author Toshio Koide (t-koide@onlab.us)
7 */
Toshio Koidedf2eab92014-02-20 11:24:59 -08008public class IntentOperationList extends LinkedList<IntentOperation> {
Ray Milkey269ffb92014-04-03 14:43:30 -07009 private static final long serialVersionUID = -3894081461861052610L;
Toshio Koided9fa2a82014-02-19 17:35:18 -080010
Ray Milkey269ffb92014-04-03 14:43:30 -070011 public boolean add(IntentOperation.Operator op, Intent intent) {
12 return add(new IntentOperation(op, intent));
13 }
Toshio Koide4f308732014-02-18 15:19:48 -080014}