Abort operation as per Section 5.2.8 of RFC 7047
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / operations / Abort.java
similarity index 63%
rename from library/src/main/java/org/opendaylight/ovsdb/lib/operations/AbortOperation.java
rename to library/src/main/java/org/opendaylight/ovsdb/lib/operations/Abort.java
index b219fe9517386e4ad744ca1b430cc9f10b283b2d..78c4b54abd10dc23f453ae86abcae28e0c256de9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (C) 2014 Red Hat, Inc.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -9,6 +9,10 @@
  */
 package org.opendaylight.ovsdb.lib.operations;
 
-public class AbortOperation extends Operation {
+public class Abort extends Operation {
+    public static final String ABORT = "abort";
 
+    public Abort() {
+        super(null, ABORT);
+    }
 }