OSDN Git Service

wifi: hotspot2: initial implementation of PasspointConfiguration
authorPeter Qiu <zqiu@google.com>
Thu, 29 Sep 2016 17:44:15 +0000 (10:44 -0700)
committerPeter Qiu <zqiu@google.com>
Wed, 26 Oct 2016 17:23:09 +0000 (10:23 -0700)
commite557c35d95a8d05c58a592d4c34db69a1dd2c1a7
treeee36ccfeb05afa13eda1d90b3fb25a5d417f4ce4
parent07bc1ee77d6dc84e0d5ba59b29a2acf4b53c2368
wifi: hotspot2: initial implementation of PasspointConfiguration

Only support nodes under HomeSP and Credential subtree that are used
by Hotspot 2.0 Release 1.

These classes are used for data exchanges between the app and the system
service (WifiService).  All the business logics and validations will be
done on the service side (WifiService).

Bug: 31813706
Test: frameworks/base/wifi/tests/runtests.sh

Change-Id: I6b08f52dd7b1a7b337899ab80f11d062c8e2f532
wifi/java/android/net/wifi/hotspot2/PasspointConfiguration.aidl [new file with mode: 0644]
wifi/java/android/net/wifi/hotspot2/PasspointConfiguration.java [new file with mode: 0644]
wifi/java/android/net/wifi/hotspot2/pps/Credential.aidl [new file with mode: 0644]
wifi/java/android/net/wifi/hotspot2/pps/Credential.java [new file with mode: 0644]
wifi/java/android/net/wifi/hotspot2/pps/HomeSP.aidl [new file with mode: 0644]
wifi/java/android/net/wifi/hotspot2/pps/HomeSP.java [new file with mode: 0644]
wifi/tests/src/android/net/wifi/hotspot2/PasspointConfigurationTest.java [new file with mode: 0644]
wifi/tests/src/android/net/wifi/hotspot2/pps/CredentialTest.java [new file with mode: 0644]
wifi/tests/src/android/net/wifi/hotspot2/pps/HomeSPTest.java [new file with mode: 0644]