Refactoring of EasySetup Android implementation
[platform/upstream/iotivity.git] / service / easy-setup / sdk / mediator / android / EasySetupCore / src / main / java / org / iotivity / service / easysetup / core / ConnectionInterface.java
1 package org.iotivity.service.easysetup.core;
2
3 public interface ConnectionInterface {
4
5
6     // Get the implementation of the Connection
7     public Object getConnection();
8
9     // Any general description on the connectivity.
10     public String getDesc();
11
12     public boolean isConnected();
13
14 }