Javadoc update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / connection / OnlineProvider.java
1 /* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */
2
3 package org.opendaylight.openflowjava.protocol.impl.connection;
4
5 import com.google.common.util.concurrent.ListenableFuture;
6
7 /**
8  * @author mirehak
9  */
10 public interface OnlineProvider {
11
12     /**
13      * @return the isOnlineFuture
14      */
15     public ListenableFuture<Boolean> getIsOnlineFuture();
16
17 }