From 3178f4f61fb4612e1b6c6d984848d6b05d4feee4 Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Fri, 6 Apr 2018 09:38:08 -0400 Subject: [PATCH] Remove TransactionStatus Forgot to do this when the commit method was removed. Change-Id: I94e773113e60a94d042261299c9bb5f5da1db878 Signed-off-by: Tom Pantelis --- .../md/sal/common/api/TransactionStatus.java | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/TransactionStatus.java 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 index b5afa83312..0000000000 --- a/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/TransactionStatus.java +++ /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, -} -- 2.36.6