From: Jakub Toth Date: Thu, 28 Apr 2016 06:40:16 +0000 (+0200) Subject: Bug 5526 - Prepared provider for new implemantation X-Git-Tag: release/boron~114 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=2d185f4723d3fc607df86f036fe51a1a9207fd43;p=netconf.git Bug 5526 - Prepared provider for new implemantation Change-Id: I8d89b01b39d32b9491c7c4293c20820720a47b5c Signed-off-by: Jakub Toth --- diff --git a/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/rest/RestConnectorProvider.java b/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/rest/RestConnectorProvider.java new file mode 100644 index 0000000000..7b2a3b65ad --- /dev/null +++ b/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/rest/RestConnectorProvider.java @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2016 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.restconf.rest; + +import com.google.common.base.Preconditions; +import java.util.Collection; +import java.util.Collections; +import org.opendaylight.controller.sal.core.api.Broker.ProviderSession; +import org.opendaylight.controller.sal.core.api.Provider; +import org.opendaylight.controller.sal.core.api.model.SchemaService; +import org.opendaylight.netconf.sal.rest.api.RestConnector; +import org.opendaylight.yangtools.concepts.ListenerRegistration; +import org.opendaylight.yangtools.yang.model.api.SchemaContextListener; + +/** + * Provider for restconf draft11. + * + */ +public class RestConnectorProvider implements Provider, RestConnector, AutoCloseable { + + private ListenerRegistration listenerRegistration; + + @Override + public void onSessionInitiated(final ProviderSession session) { + final SchemaService schemaService = Preconditions.checkNotNull(session.getService(SchemaService.class)); + } + + @Override + public Collection getProviderFunctionality() { + return Collections.emptySet(); + } + + @Override + public void close() throws Exception { + if (this.listenerRegistration != null) { + this.listenerRegistration.close(); + } + } +}