Remove deprecated MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / md / sal / binding / test / AbstractNotificationBrokerTest.java
diff --git a/opendaylight/md-sal/sal-binding-broker/src/test/java/org/opendaylight/controller/md/sal/binding/test/AbstractNotificationBrokerTest.java b/opendaylight/md-sal/sal-binding-broker/src/test/java/org/opendaylight/controller/md/sal/binding/test/AbstractNotificationBrokerTest.java
deleted file mode 100644 (file)
index cd40130..0000000
+++ /dev/null
@@ -1,53 +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.test;
-
-import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
-import org.opendaylight.controller.md.sal.binding.api.NotificationService;
-import org.opendaylight.controller.md.sal.binding.impl.BindingToNormalizedNodeCodec;
-import org.opendaylight.controller.md.sal.dom.broker.impl.DOMNotificationRouter;
-import org.opendaylight.yangtools.yang.model.api.SchemaContext;
-
-@Deprecated
-public class AbstractNotificationBrokerTest extends AbstractSchemaAwareTest {
-
-    private BindingToNormalizedNodeCodec bindingToNormalizedNodeCodec;
-    private DOMNotificationRouter domNotificationRouter;
-    private NotificationService notificationService;
-    private NotificationPublishService notificationPublishService;
-
-    @Override
-    protected void setupWithSchema(final SchemaContext context) {
-        final DataBrokerTestCustomizer testCustomizer = createDataBrokerTestCustomizer();
-        domNotificationRouter = testCustomizer.getDomNotificationRouter();
-        notificationService = testCustomizer.createNotificationService();
-        notificationPublishService = testCustomizer.createNotificationPublishService();
-        bindingToNormalizedNodeCodec = testCustomizer.getBindingToNormalized();
-        testCustomizer.updateSchema(context);
-    }
-
-    protected DataBrokerTestCustomizer createDataBrokerTestCustomizer() {
-        return new DataBrokerTestCustomizer();
-    }
-
-    public NotificationService getNotificationService() {
-        return notificationService;
-    }
-
-    public NotificationPublishService getNotificationPublishService() {
-        return notificationPublishService;
-    }
-
-    public DOMNotificationRouter getDomNotificationRouter() {
-        return domNotificationRouter;
-    }
-
-    public BindingToNormalizedNodeCodec getBindingToNormalizedNodeCodec() {
-        return bindingToNormalizedNodeCodec;
-    }
-}