blob: 05e5b5c736e8f17def5013af68abfa90ce681e4e [file] [log] [blame]
package net.onrc.onos.intent;
import java.util.ArrayList;
/**
* @author Toshio Koide (t-koide@onlab.us)
*/
public class IntentOperationList extends ArrayList<IntentOperation> {
private static final long serialVersionUID = -3894081461861052610L;
public boolean add(IntentOperation.Operator op, Intent intent) {
return add(new IntentOperation(op, intent));
}
}