Honeynode test tool
[transportpce.git] / tests / honeynode / honeynode-common / src / main / java / io / fd / honeycomb / transportpce / test / common / DataStoreContext.java
1 /*
2  * Copyright © 2016 AT&T and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package io.fd.honeycomb.transportpce.test.common;
9
10 import org.opendaylight.yangtools.binding.data.codec.impl.BindingNormalizedNodeCodecRegistry;
11 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
12
13 public interface DataStoreContext {
14
15 //    DataBroker getDataBroker();
16 //
17 //    DOMDataBroker getDOMDataBroker();
18 //
19 //    NotificationService createNotificationService();
20 //
21 //    NotificationPublishService createNotificationPublishService();
22
23     SchemaContext getSchemaContext();
24
25     BindingNormalizedNodeCodecRegistry getBindingToNormalizedNodeCodec();
26
27 //    NotificationService getNotificationService();
28 //
29 //    NotificationPublishService getNotificationPublishService();
30
31 }