From: Tom Pantelis Date: Fri, 6 Apr 2018 13:38:08 +0000 (-0400) Subject: Remove TransactionStatus X-Git-Tag: release/fluorine~121 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=3178f4f61fb4612e1b6c6d984848d6b05d4feee4 Remove TransactionStatus Forgot to do this when the commit method was removed. Change-Id: I94e773113e60a94d042261299c9bb5f5da1db878 Signed-off-by: Tom Pantelis --- 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, -}