Move common DataStoreContext and co to test-common
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / DataStoreContext.java
diff --git a/common/src/main/java/org/opendaylight/transportpce/common/DataStoreContext.java b/common/src/main/java/org/opendaylight/transportpce/common/DataStoreContext.java
deleted file mode 100644 (file)
index 1f2a5fd..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright © 2016 AT&T 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.transportpce.common;
-
-import org.opendaylight.mdsal.binding.api.DataBroker;
-import org.opendaylight.mdsal.binding.api.NotificationPublishService;
-import org.opendaylight.mdsal.binding.api.NotificationService;
-import org.opendaylight.mdsal.binding.dom.codec.api.BindingNormalizedNodeSerializer;
-import org.opendaylight.mdsal.dom.api.DOMDataBroker;
-import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
-
-public interface DataStoreContext {
-
-    DataBroker getDataBroker();
-
-    DOMDataBroker getDOMDataBroker();
-
-    NotificationService createNotificationService();
-
-    NotificationPublishService createNotificationPublishService();
-
-    EffectiveModelContext getSchemaContext();
-
-    BindingNormalizedNodeSerializer getBindingToNormalizedNodeCodec();
-
-    NotificationService getNotificationService();
-
-    NotificationPublishService getNotificationPublishService();
-
-}