Remove deprecated MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / md / sal / binding / api / DataTreeModification.java
diff --git a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/DataTreeModification.java b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/DataTreeModification.java
deleted file mode 100644 (file)
index 0b6c6a9..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (c) 2015 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.binding.api;
-
-import org.eclipse.jdt.annotation.NonNull;
-import org.opendaylight.yangtools.yang.binding.DataObject;
-
-/**
- * Represent root of modification.
- *
- * @author Tony Tkacik <ttkacik@cisco.com>
- *
- * @deprecated Use {@link org.opendaylight.mdsal.binding.api.DataTreeModification} instead.
- */
-@Deprecated(forRemoval = true)
-public interface DataTreeModification<T extends DataObject> {
-
-    /**
-     * Get the modification root path. This is the path of the root node
-     * relative to the root of InstanceIdentifier namespace.
-     *
-     * @return absolute path of the root node
-     */
-    @NonNull DataTreeIdentifier<T> getRootPath();
-
-    /**
-     * Get the modification root node.
-     *
-     * @return modification root node
-     */
-    @NonNull DataObjectModification<T> getRootNode();
-}