blob: af00373e621b5d47639cbe0a55c9977e7fe271a4 [file] [log] [blame]
Toshio Koide4f308732014-02-18 15:19:48 -08001package net.onrc.onos.intent;
2
3import java.util.ArrayList;
4
5public class IntentOperationList extends ArrayList<IntentOperation> {
6 private static final long serialVersionUID = -3894081461861052610L;
Toshio Koide27ffd412014-02-18 19:15:27 -08007
8 public boolean add(IntentOperation.Operator op, Intent intent) {
9 return add(new IntentOperation(op, intent));
10 }
Toshio Koide4f308732014-02-18 15:19:48 -080011}