73637d87d2399875ba86ca840189ed2d5321846e
[platform/upstream/iotivity.git] / service / easy-setup / sdk / mediator / android / EasySetupCore / src / main / java / org / iotivity / service / easysetup / impl / WiFiOnBoardingConfig.java
1 /**\r
2  * ***************************************************************\r
3  * <p/>\r
4  * Copyright 2015 Samsung Electronics All Rights Reserved.\r
5  * <p/>\r
6  * <p/>\r
7  * <p/>\r
8  * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * you may not use this file except in compliance with the License.\r
10  * You may obtain a copy of the License at\r
11  * <p/>\r
12  * http://www.apache.org/licenses/LICENSE-2.0\r
13  * <p/>\r
14  * Unless required by applicable law or agreed to in writing, software\r
15  * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * See the License for the specific language governing permissions and\r
18  * limitations under the License.\r
19  * <p/>\r
20  * ****************************************************************\r
21  */\r
22 \r
23 package org.iotivity.service.easysetup.impl;\r
24 \r
25 import org.iotivity.service.easysetup.core.IpOnBoardingConnection;\r
26 import org.iotivity.service.easysetup.core.OnBoardingConfig;\r
27 \r
28 import android.net.wifi.WifiConfiguration;\r
29 \r
30 /**\r
31  * This class contains on boarding configuration information for Soft AP on boarding connectivity.\r
32  * It implements OnBoardingConfig interface & provide implementation for WiFi Soft AP connectivity.\r
33  */\r
34 \r
35 public class WiFiOnBoardingConfig implements OnBoardingConfig {\r
36 \r
37     private final WifiConfiguration config = new WifiConfiguration();\r
38     private final ConnType mConnType = OnBoardingConfig.ConnType.WiFi;\r
39     private IpOnBoardingConnection mConnection;\r
40 \r
41     @Override\r
42     public Object getConfig() {\r
43         return config;\r
44     }\r
45 \r
46     public void setSSId(String ssid) {\r
47         config.SSID = ssid;\r
48     }\r
49 \r
50     public void setSharedKey(String sharedKey) {\r
51         config.preSharedKey = sharedKey;\r
52     }\r
53 \r
54     public void setAuthAlgo(int aurthAlgo) {\r
55         config.allowedAuthAlgorithms.set(aurthAlgo);\r
56     }\r
57 \r
58     public void setKms(int kms) {\r
59         config.allowedKeyManagement.set(kms);\r
60     }\r
61 \r
62     @Override\r
63     public ConnType getConnType() {\r
64         return mConnType;\r
65     }\r
66 }\r