Refactoring of EasySetup Android implementation
[platform/upstream/iotivity.git] / service / easy-setup / sdk / mediator / android / EasySetupCore / src / main / java / 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 org.iotivity.service.easysetup.mediator.ip.WiFiSoftAPManager;\r
25 \r
26 import android.widget.Toast;\r
27 \r
28 public class OnBoardEnrollee {\r
29     WiFiSoftAPManager wifiSoftAPManager;\r
30     IOnBoardingStatus deviceScanListener;\r
31 \r
32     /**\r
33      * Constructor for OnBoardEnrollee. Constructs a new OnBoardEnrollee.\r
34      */\r
35     public OnBoardEnrollee(Context context) {\r
36         wifiSoftAPManager = new WiFiSoftAPManager(context);\r
37     }\r
38 \r
39     public void registerOnBoardingStatusHandler(\r
40             IOnBoardingStatus deviceScanListener) {\r
41         this.deviceScanListener = deviceScanListener;\r
42     }\r
43 \r
44     public void startDeviceScan() {\r
45         wifiSoftAPManager.getClientList(this.deviceScanListener, 300);\r
46     }\r
47 \r
48     public void enableWiFiAP(WifiConfiguration netConfig, boolean enabled) {\r
49         wifiSoftAPManager.setWifiApEnabled(netConfig, true);\r
50     }\r
51 \r
52     public void disableWiFiAP() {\r
53         wifiSoftAPManager.setWifiApEnabled(null, false);\r
54     }\r
55 }\r