BUG-8327: deprecate sal.core.api.model.SchemaService
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / sal / core / api / model / SchemaService.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. 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 org.opendaylight.controller.sal.core.api.model;
9
10 import org.opendaylight.controller.sal.core.api.BrokerService;
11 import org.opendaylight.yangtools.concepts.ListenerRegistration;
12 import org.opendaylight.yangtools.yang.model.api.Module;
13 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
14 import org.opendaylight.yangtools.yang.model.api.SchemaContextListener;
15
16 /**
17  * @deprecated Use {@link org.opendaylight.mdsal.dom.api.DOMSchemaService} instead.
18  */
19 @Deprecated
20 public interface SchemaService extends BrokerService {
21
22     /**
23      * Registers a YANG module to session and global context
24      */
25     void addModule(Module module);
26
27     /**
28      * Unregisters a YANG module from session context
29      */
30     void removeModule(Module module);
31
32     /**
33      * Returns session specific YANG schema context
34      */
35     SchemaContext getSessionContext();
36
37     /**
38      * Returns global schema context
39      */
40     SchemaContext getGlobalContext();
41
42     /**
43      * Register a listener for changes in schema context.
44      *
45      * @param listener Listener which should be registered
46      * @return Listener registration handle
47      */
48     ListenerRegistration<SchemaContextListener> registerSchemaContextListener(SchemaContextListener listener);
49 }