26
|
1 |
/*
|
|
2 |
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
* Constant definitions for EAP UIs
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
/*
|
|
20 |
* %version: 5 %
|
|
21 |
*/
|
|
22 |
|
|
23 |
#ifndef EAPUIDEFS_H
|
|
24 |
#define EAPUIDEFS_H
|
|
25 |
|
|
26 |
#include <QString>
|
|
27 |
|
|
28 |
namespace EapUiStrings
|
|
29 |
{
|
|
30 |
static const QString EapAka = "EAP-AKA";
|
|
31 |
static const QString EapFast = "EAP-FAST";
|
|
32 |
static const QString EapGtc = "EAP-GTC";
|
|
33 |
static const QString EapMschapv2 = "EAP-MSCHAPv2";
|
|
34 |
static const QString EapSim = "EAP-SIM";
|
|
35 |
static const QString EapTls = "EAP-TLS";
|
|
36 |
static const QString EapTtls = "EAP-TTLS";
|
|
37 |
static const QString Leap = "LEAP";
|
|
38 |
static const QString Mschapv2 = "MSCHAPv2";
|
|
39 |
static const QString Pap = "PAP";
|
|
40 |
static const QString Peap = "PEAP";
|
|
41 |
}
|
|
42 |
|
|
43 |
#endif /* EAPUIDEFS_H */
|