diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-05-03 22:18:56 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-03 22:18:56 +0200 |
commit | c3e7e4fbab09a55a7e433f76f290be75d77bcb28 (patch) | |
tree | 069e25f914563249f15c14e49dc24f11dfd99e9b /src/de/blinkt/openvpn/VpnProfile.java | |
parent | 3d54881bc78b893ab286681338dd7b9b69d871b3 (diff) |
add delete Profile support
add Config Parser
begin openvpn config => Vpn Profile Converter
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
-rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index 04b5927f..ba3d4535 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -422,7 +422,7 @@ public class VpnProfile implements Serializable{ return intent; } - public String getTemporaryPKCS12Password() { + private String getTemporaryPKCS12Password() { if(mTempPKCS12Password!=null) return mTempPKCS12Password; @@ -550,6 +550,13 @@ public class VpnProfile implements Serializable{ return mPassword; } } + + + // Used by the Array Adapter + @Override + public String toString() { + return mName; + } |