From a5b5c1f746e99141c1eb6d7443621dc44f28a3d9 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 7 Oct 2020 23:41:11 +0200 Subject: [PATCH] Remove org.opendaylight.yangtools.yang.binding.RpcImplementation We do not use this interface anywhere, remove it. Change-Id: Ia838e7a45616b8fba6d94cfb5c25c7f14b974910 Signed-off-by: Robert Varga --- .../yang/binding/RpcImplementation.java | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 binding/yang-binding/src/main/java/org/opendaylight/yangtools/yang/binding/RpcImplementation.java 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 index 95b5875fc7..0000000000 --- a/binding/yang-binding/src/main/java/org/opendaylight/yangtools/yang/binding/RpcImplementation.java +++ /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> getSupportedInputs(); - - ListenableFuture> invoke(Class type, I input); -} -- 2.36.6