Refactoring of EasySetup Android implementation
[platform/upstream/iotivity.git] / service / easy-setup / sdk / mediator / android / EasySetupCore / src / main / java / org / iotivity / service / easysetup / core / ProvisioningConfig.java
1 package org.iotivity.service.easysetup.core;
2
3
4 public interface ProvisioningConfig {
5
6     public static enum ConnType {
7         WiFi,
8         BT
9     }
10
11     Object getConfig();
12     ConnType getConnType();
13
14 }