OSDN Git Service

Add VPN settings classes to Settings app.
authorHung-ying Tyan <tyanh@google.com>
Wed, 10 Jun 2009 14:52:44 +0000 (22:52 +0800)
committerHung-ying Tyan <tyanh@google.com>
Fri, 12 Jun 2009 07:44:49 +0000 (15:44 +0800)
commit1617706d2529b2182d1a7fe2348495fb8f40bb81
tree0054cdb730320cf5e515ab3f068e0ed9d41d9684
parent1d09759798f029d684a636683ab7bf185eda9e6f
Add VPN settings classes to Settings app.

PATCH SET 2:
+ Add import com.android.settings.R

PATCH SET 3:
+ Remove @Override interface methods to be compilable by Java 1.5.

PATCH SET 4:
+ Add import android.net.vpn.VpnManager

PATCH SET 5:
+ Add license headers.

PATCH SET 6:
+ Remove Constant.java and move the constants to VpnSettings.
+ Make AuthenticationActor implement DialogInterface's handlers.
+ Remove trailing spaces.

PATCH SET 7:
+ Remove default username.
18 files changed:
AndroidManifest.xml
res/layout/vpn_connect_dialog_view.xml [new file with mode: 0644]
res/values/dimens.xml [new file with mode: 0755]
res/values/strings.xml
res/xml/vpn_edit.xml [new file with mode: 0644]
res/xml/vpn_settings.xml [new file with mode: 0644]
res/xml/vpn_type.xml [new file with mode: 0644]
res/xml/wireless_settings.xml
src/com/android/settings/SecuritySettings.java
src/com/android/settings/vpn/AuthenticationActor.java [new file with mode: 0644]
src/com/android/settings/vpn/L2tpIpsecEditor.java [new file with mode: 0644]
src/com/android/settings/vpn/SingleServerEditor.java [new file with mode: 0644]
src/com/android/settings/vpn/Util.java [new file with mode: 0644]
src/com/android/settings/vpn/VpnEditor.java [new file with mode: 0644]
src/com/android/settings/vpn/VpnProfileActor.java [new file with mode: 0644]
src/com/android/settings/vpn/VpnProfileEditor.java [new file with mode: 0644]
src/com/android/settings/vpn/VpnSettings.java [new file with mode: 0644]
src/com/android/settings/vpn/VpnTypeSelection.java [new file with mode: 0644]