org.opendaylight.ovsdb.lib.operations.Mutate Maven / Gradle / Ivy
/*
* Copyright © 2014, 2017 Matt Oswalt 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 edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.ArrayList;
import java.util.List;
import org.opendaylight.ovsdb.lib.notation.Condition;
import org.opendaylight.ovsdb.lib.notation.Mutation;
import org.opendaylight.ovsdb.lib.notation.Mutator;
import org.opendaylight.ovsdb.lib.schema.ColumnSchema;
import org.opendaylight.ovsdb.lib.schema.TableSchema;
public class Mutate> extends Operation implements ConditionalOperation {
public static final String MUTATE = "mutate";
List where = new ArrayList<>();
private List mutations = new ArrayList<>();
public Mutate on(TableSchema schema) {
this.setTableSchema(schema);
return this;
}
public Mutate(TableSchema schema) {
super(schema, MUTATE);
}
@SuppressFBWarnings("RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT") // validate call below
public , D> Mutate addMutation(ColumnSchema columnSchema,
Mutator mutator, D value) {
columnSchema.validate(value);
Object untypedValue = columnSchema.getNormalizeData(value);
mutations.add(new Mutation(columnSchema.getName(), mutator, untypedValue));
return this;
}
public List getMutations() {
return mutations;
}
public void setMutations(List mutations) {
this.mutations = mutations;
}
@Override
public void addCondition(Condition condition) {
this.where.add(condition);
}
public Where where(Condition condition) {
this.where.add(condition);
return new Where(this);
}
public List getWhere() {
return where;
}
public void setWhere(List where) {
this.where = where;
}
}