/**@class android.net.wifi.WifiEnterpriseConfig.Eap
@extends java.lang.Object

The Extensible Authentication Protocol method used */
var Eap = {

/**No EAP method used. Represents an empty config */
NONE : "-1",
/**Protected EAP */
PEAP : "0",
/**EAP-Transport Layer Security */
TLS : "1",
/**EAP-Tunneled Transport Layer Security */
TTLS : "2",
/**EAP-Password */
PWD : "3",
/**EAP-Subscriber Identity Module [RFC-4186] */
SIM : "4",
/**EAP-Authentication and Key Agreement [RFC-4187] */
AKA : "5",
/**EAP-Authentication and Key Agreement Prime [RFC-5448] */
AKA_PRIME : "6",
/**Hotspot 2.0 r2 OSEN */
UNAUTH_TLS : "7",
/**@hide */
strings : "null",

};