Merge "Added Mutate operation" into topic/schema
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / operations / Operations.java
index b86af3406e0d0e1d12b4319de1a571d890a5a420..c88b0adecbdc5649d28bbe234e1ab4381aa5f50c 100644 (file)
@@ -45,4 +45,15 @@ public class Operations {
         return new Select<>(schema);
     }
 
-}
\ No newline at end of file
+    public Comment comment(String comment) {
+        return new Comment(comment);
+    }
+
+    /*
+     * Could not use Java keyword "assert" which clashes with the ovsdb json-rpc method.
+     * using assertion instead.
+     */
+    public Assert assertion(String lock) {
+        return new Assert(lock);
+    }
+}