blob: 881120abc523c1dd432fcde929d0f0c68ba220b1 [file] [log] [blame]
Toshio Koide4f308732014-02-18 15:19:48 -08001package net.onrc.onos.intent;
2
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> {
Toshio Koide4f308732014-02-18 15:19:48 -08009 private static final long serialVersionUID = -3894081461861052610L;
Toshio Koided9fa2a82014-02-19 17:35:18 -080010
Toshio Koide27ffd412014-02-18 19:15:27 -080011 public boolean add(IntentOperation.Operator op, Intent intent) {
12 return add(new IntentOperation(op, intent));
13 }
Toshio Koide4f308732014-02-18 15:19:48 -080014}