Change getIsOnlineFuture() return type
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / OnlineProvider.java
index c167dfb7f469dd72b1976dcd341dee312c6f0a58..370ea160a924c8a4f9169a0f3537c06f72a35e74 100644 (file)
@@ -5,8 +5,6 @@
  * 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.openflowjava.protocol.impl.core;
 
 import com.google.common.util.concurrent.ListenableFuture;
@@ -18,5 +16,5 @@ import com.google.common.util.concurrent.ListenableFuture;
  */
 public interface OnlineProvider {
 
-    ListenableFuture<Boolean> getIsOnlineFuture();
+    ListenableFuture<Void> getIsOnlineFuture();
 }