Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / java / org / opendaylight / mdsal / binding / javav2 / generator / impl / rpc / examples / MyModuleMyCallRpc.java
diff --git a/binding2/mdsal-binding2-generator-impl/src/test/java/org/opendaylight/mdsal/binding/javav2/generator/impl/rpc/examples/MyModuleMyCallRpc.java b/binding2/mdsal-binding2-generator-impl/src/test/java/org/opendaylight/mdsal/binding/javav2/generator/impl/rpc/examples/MyModuleMyCallRpc.java
deleted file mode 100644 (file)
index 5a56df0..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (c) 2017 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.mdsal.binding.javav2.generator.impl.rpc.examples;
-
-import org.opendaylight.mdsal.binding.javav2.spec.base.Rpc;
-import org.opendaylight.mdsal.binding.javav2.spec.base.RpcCallback;
-
-/**
- * It represents following YANG snippet:
- *
- * <p>
- * module my-module {
- *
- * <p>
- *  rpc my-call {
- *
- * <p>
- *     input {
- *       leaf v1 {
- *          type string;
- *       }
- *     }
- *
- * <p>
- *     output {
- *       leaf v2 {
- *          type string
- *       }
- *     }
- *  }
- * }.
- */
-public interface MyModuleMyCallRpc extends Rpc<MyCallInput, MyCallOutput> {
-
-    @Override
-    void invoke(MyCallInput input, RpcCallback<MyCallOutput> callback);
-}