public class VpnProfile implements Cloneable
{
private String mName, mGateway, mUsername, mPassword, mCertificate, mUserCertificate;
+ private VpnType mVpnType;
private long mId = -1;
public long getId()
this.mGateway = gateway;
}
+ public VpnType getVpnType()
+ {
+ return mVpnType;
+ }
+
+ public void setVpnType(VpnType type)
+ {
+ this.mVpnType = type;
+ }
+
public String getUsername()
{
return mUsername;