Rename restconf-nb-rfc8040 to restconf-nb
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / streams / StreamSessionHandler.java
diff --git a/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/streams/StreamSessionHandler.java b/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/streams/StreamSessionHandler.java
deleted file mode 100644 (file)
index 7cd0042..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (c) 2020 Lumina Networks, Inc. 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.nb.rfc8040.streams;
-
-/**
- * Interface for session handler that is responsible for sending of data over established session.
- */
-public interface StreamSessionHandler {
-    /**
-     * Identification of created session.
-     */
-    boolean isConnected();
-
-    /**
-     * Interface for sending String message through one of implementation.
-     *
-     * @param data Message data to be send.
-     */
-    void sendDataMessage(String data);
-}