Remove TransactionStatus 28/70428/2
authorTom Pantelis <tompantelis@gmail.com>
Fri, 6 Apr 2018 13:38:08 +0000 (09:38 -0400)
committerTom Pantelis <tompantelis@gmail.com>
Fri, 13 Apr 2018 11:43:06 +0000 (11:43 +0000)
Forgot to do this when the commit method was removed.

Change-Id: I94e773113e60a94d042261299c9bb5f5da1db878
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/TransactionStatus.java [deleted file]

diff --git a/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/TransactionStatus.java b/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/TransactionStatus.java
deleted file mode 100644 (file)
index b5afa83..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco Systems, 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.controller.md.sal.common.api;
-
-@Deprecated
-public enum TransactionStatus {
-    /**
-     * The transaction has been freshly allocated. The user is still accessing
-     * it and it has not been sealed.
-     */
-    NEW,
-    /**
-     * The transaction has been completed by the user and sealed. It is currently
-     * awaiting execution.
-     */
-    SUBMITED,
-    /**
-     * The transaction has been successfully committed to backing store.
-     */
-    COMMITED,
-    /**
-     * The transaction has failed to commit due to some underlying issue.
-     */
-    FAILED,
-    /**
-     * Currently unused.
-     */
-    CANCELED,
-}