Remove org.opendaylight.yangtools.yang.binding.RpcImplementation 85/92985/3
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 7 Oct 2020 21:41:11 +0000 (23:41 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 7 Oct 2020 22:43:39 +0000 (00:43 +0200)
We do not use this interface anywhere, remove it.

Change-Id: Ia838e7a45616b8fba6d94cfb5c25c7f14b974910
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
binding/yang-binding/src/main/java/org/opendaylight/yangtools/yang/binding/RpcImplementation.java [deleted file]

diff --git a/binding/yang-binding/src/main/java/org/opendaylight/yangtools/yang/binding/RpcImplementation.java b/binding/yang-binding/src/main/java/org/opendaylight/yangtools/yang/binding/RpcImplementation.java
deleted file mode 100644 (file)
index 95b5875..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (c) 2013 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.yangtools.yang.binding;
-
-import com.google.common.util.concurrent.ListenableFuture;
-import java.util.Set;
-import org.opendaylight.yangtools.yang.common.RpcResult;
-
-/**
- * This is an old tagging interface, which is not used anywhere right now.
- *
- * @deprecated This slated for removal unless we find a use for it.
- */
-@Deprecated(forRemoval = true)
-public interface RpcImplementation {
-
-    Set<Class<? extends RpcInput>> getSupportedInputs();
-
-    <I extends RpcInput, O extends RpcOutput> ListenableFuture<RpcResult<O>> invoke(Class<I> type, I input);
-}