blob: 05e5b5c736e8f17def5013af68abfa90ce681e4e [file] [log] [blame]
Toshio Koide4f308732014-02-18 15:19:48 -08001package net.onrc.onos.intent;
2
3import java.util.ArrayList;
4
Toshio Koided9fa2a82014-02-19 17:35:18 -08005/**
6 * @author Toshio Koide (t-koide@onlab.us)
7 */
Toshio Koide4f308732014-02-18 15:19:48 -08008public class IntentOperationList extends ArrayList<IntentOperation> {
9 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}