Instantiate yang-data-codec-binfmt
[yangtools.git] / java / org / opendaylight / controller / cluster / schema / provider / impl / RemoteSchemaProvider.java
diff --git a/java/org/opendaylight/controller/cluster/schema/provider/impl/RemoteSchemaProvider.java b/java/org/opendaylight/controller/cluster/schema/provider/impl/RemoteSchemaProvider.java
deleted file mode 100644 (file)
index 88e5842..0000000
+++ /dev/null
@@ -1,62 +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.cluster.schema.provider.impl;
-
-import akka.dispatch.OnComplete;
-import com.google.common.annotations.Beta;
-import com.google.common.util.concurrent.ListenableFuture;
-import com.google.common.util.concurrent.SettableFuture;
-import org.opendaylight.controller.cluster.schema.provider.RemoteYangTextSourceProvider;
-import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
-import org.opendaylight.yangtools.yang.model.repo.api.YangTextSchemaSource;
-import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceProvider;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import scala.concurrent.ExecutionContext;
-import scala.concurrent.Future;
-
-/**
- * Provides schema sources from {@link RemoteYangTextSourceProvider}.
- */
-@Beta
-public class RemoteSchemaProvider implements SchemaSourceProvider<YangTextSchemaSource> {
-    private static final Logger LOG = LoggerFactory.getLogger(RemoteSchemaProvider.class);
-
-    private final RemoteYangTextSourceProvider remoteRepo;
-    private final ExecutionContext executionContext;
-
-    public RemoteSchemaProvider(final RemoteYangTextSourceProvider remoteRepo,
-            final ExecutionContext executionContext) {
-        this.remoteRepo = remoteRepo;
-        this.executionContext = executionContext;
-    }
-
-    @Override
-    public ListenableFuture<YangTextSchemaSource> getSource(final SourceIdentifier sourceIdentifier) {
-        LOG.trace("Getting yang schema source for {}", sourceIdentifier.getName());
-
-        Future<YangTextSchemaSourceSerializationProxy> result = remoteRepo.getYangTextSchemaSource(sourceIdentifier);
-
-        final SettableFuture<YangTextSchemaSource> res = SettableFuture.create();
-        result.onComplete(new OnComplete<YangTextSchemaSourceSerializationProxy>() {
-            @Override
-            public void onComplete(final Throwable throwable,
-                    final YangTextSchemaSourceSerializationProxy yangTextSchemaSourceSerializationProxy) {
-                if (yangTextSchemaSourceSerializationProxy != null) {
-                    res.set(yangTextSchemaSourceSerializationProxy.getRepresentation());
-                }
-                if (throwable != null) {
-                    res.setException(throwable);
-                }
-            }
-        }, executionContext);
-
-        return res;
-    }
-}