Merge "Added Mutate operation" into topic/schema
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / operations / Operations.java
index 912ff67caa5d3c961cadc8bbfab0c0d08533ecdd..c88b0adecbdc5649d28bbe234e1ab4381aa5f50c 100644 (file)
@@ -29,6 +29,10 @@ public class Operations {
         return new Delete<>(schema);
     }
 
+    public <E extends TableSchema<E>> Mutate<E> mutate(TableSchema<E> schema) {
+        return new Mutate<>(schema);
+    }
+
     public Commit commit(Boolean durable) {
         return new Commit(durable);
     }
@@ -52,4 +56,4 @@ public class Operations {
     public Assert assertion(String lock) {
         return new Assert(lock);
     }
-}
\ No newline at end of file
+}