39
|
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 "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 |
* EAP String definitions for UI
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
#ifndef EAPWIZARDUISTRINGS_H
|
|
20 |
#define EAPWIZARDUISTRINGS_H
|
|
21 |
|
|
22 |
// System includes
|
|
23 |
#include <QString>
|
|
24 |
|
|
25 |
// User includes
|
|
26 |
|
|
27 |
// Forward declarations
|
|
28 |
|
|
29 |
// External data types
|
|
30 |
|
|
31 |
// Constants
|
|
32 |
|
|
33 |
/*!
|
|
34 |
@addtogroup group_eap_wizard
|
|
35 |
@{
|
|
36 |
*/
|
|
37 |
|
|
38 |
//! Namespace for EAP UI String in the context of EapWizard
|
|
39 |
namespace EapWizardUiStrings
|
|
40 |
{
|
|
41 |
//! String for EAP-AKA
|
|
42 |
static const QString EapAka = "EAP-AKA";
|
|
43 |
//! String for EAP-FAST
|
|
44 |
static const QString EapFast = "EAP-FAST";
|
|
45 |
//! String for EAP-GTC
|
|
46 |
static const QString EapGtc = "EAP-GTC";
|
|
47 |
//! String for EAP-MSCHAPv2
|
|
48 |
static const QString EapMschapv2 = "EAP-MSCHAPv2";
|
|
49 |
//! String for EAP-SIM
|
|
50 |
static const QString EapSim = "EAP-SIM";
|
|
51 |
//! String for EAP-TLS
|
|
52 |
static const QString EapTls = "EAP-TLS";
|
|
53 |
//! String for EAP-TTLS
|
|
54 |
static const QString EapTtls = "EAP-TTLS";
|
|
55 |
//! String for LEAP
|
|
56 |
static const QString Leap = "LEAP";
|
|
57 |
//! String for Plain-MSCHAPv2
|
|
58 |
static const QString Mschapv2 = "MSCHAPv2";
|
|
59 |
//! String for PAP
|
|
60 |
static const QString Pap = "PAP";
|
|
61 |
//! String for PEAP
|
|
62 |
static const QString Peap = "PEAP";
|
|
63 |
}
|
|
64 |
|
|
65 |
/*! @} */
|
|
66 |
|
|
67 |
#endif /* EAPWIZARDUISTRINGS_H */
|