Added Yang code generation for Multipart messages
[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  */
11 public interface OnlineProvider {
12
13     /**
14      * @return the isOnlineFuture
15      */
16     public ListenableFuture<Boolean> getIsOnlineFuture();
17
18 }