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 | 4c991f2fc906bb66f060c15bc27a4fad0fb4805a (patch) | |
tree | 069e25f914563249f15c14e49dc24f11dfd99e9b /src/de/blinkt/openvpn/VpnProfile.java | |
parent | 3512dd8de571c8183a7e7476db30a928573d8442 (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; + } |