AuthMatch.java revision 71a988c8e9859244b83cd55bb6b6ee913fcaf95c
1package com.android.server.wifi.hotspot2;
2
3/**
4 * Match score for EAP credentials:
5 * RealmOnly means that there is an empty set of EAP methods, i.e. only the realm matched.
6 * Unqualified means that a matching EAP method was found but with empty auth parameters for either
7 * EAP method.
8 * Qualified means that an exact math of authentication parameters was found.
9 * Note: Keep the literals in order of desired preference, i.e. Qualified supposedly last.
10 */
11public enum AuthMatch {
12    None,
13    RealmOnly,
14    Unqualified,
15    Qualified
16}
17