Added initial prototype implementation of Android Multi-PHY Easy Setup
[platform/upstream/iotivity.git] / service / easy-setup / sdk / android / EasySetupCore / src / org / iotivity / service / easysetup / mediator / OnBoardEnrollee.java
1 /******************************************************************\r
2  *\r
3  * Copyright 2015 Samsung Electronics All Rights Reserved.\r
4  *\r
5  *\r
6  *\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  *\r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  *\r
19  ******************************************************************/\r
20 package org.iotivity.service.easysetup.mediator;\r
21 \r
22 import android.content.Context;\r
23 import android.net.wifi.WifiConfiguration;\r
24 import android.widget.Toast;\r
25 \r
26 public class OnBoardEnrollee {\r
27     WiFiSoftAPManager wifiSoftAPManager;\r
28     IOnBoardingStatus deviceScanListener;\r
29 \r
30     /**\r
31      * Constructor for OnBoardEnrollee. Constructs a new OnBoardEnrollee.\r
32      */\r
33     public OnBoardEnrollee(Context context) {\r
34         wifiSoftAPManager = new WiFiSoftAPManager(context);\r
35     }\r
36 \r
37     public void registerOnBoardingStatusHandler(\r
38             IOnBoardingStatus deviceScanListener) {\r
39         this.deviceScanListener = deviceScanListener;\r
40     }\r
41 \r
42     public void startDeviceScan() {\r
43         wifiSoftAPManager.getClientList(false, this.deviceScanListener);\r
44     }\r
45 \r
46     public void enableWiFiAP(WifiConfiguration netConfig, boolean enabled) {\r
47         wifiSoftAPManager.setWifiApEnabled(netConfig, true);\r
48     }\r
49 \r
50     public void disableWiFiAP() {\r
51         wifiSoftAPManager.setWifiApEnabled(null, false);\r
52     }\r
53 }\r