/* * Copyright © 2014, 2017 Red Hat, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.ovsdb.lib.operations; import java.util.ArrayList; import java.util.List; import org.opendaylight.ovsdb.lib.notation.Condition; import org.opendaylight.ovsdb.lib.schema.TableSchema; public class Delete<E extends TableSchema<E>> extends Operation<E> implements ConditionalOperation { public static final String DELETE = "delete"; List<Condition> where = new ArrayList<>(); Integer count; public Delete(TableSchema<E> schema) { super(schema, DELETE); } public Delete<E> on(TableSchema schema) { return this; } public Where where(Condition condition) { where.add(condition); return new Where(this); } @Override public void addCondition(Condition condition) { this.where.add(condition); } public List<Condition> getWhere() { return where; } public void setWhere(List<Condition> where) { this.where = where; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } }