25
|
1 |
/*
|
|
2 |
* Copyright (c) 2005-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: Device manager private CenRep key definitions
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef NSMLDMSYNCAPP_PRIVATE_CR_KEYS_H
|
|
20 |
#define NSMLDMSYNCAPP_PRIVATE_CR_KEYS_H
|
|
21 |
|
|
22 |
// CONSTANTS
|
|
23 |
|
|
24 |
// Device manager key UID
|
|
25 |
const TUid KCRUidNSmlDMSyncApp = {0x101f6de5};
|
|
26 |
//browser uid
|
|
27 |
const TUid browseruid = {0x10008d39};
|
|
28 |
//java uid
|
|
29 |
const TUid javauid = {0x2001FD68};
|
|
30 |
//flash uid
|
|
31 |
const TUid flashuid = {0x101FD693};
|
|
32 |
|
|
33 |
// CenRep key used in variation of the aspects of
|
|
34 |
// the firmware update feature. The flag values are
|
|
35 |
// commented below.
|
|
36 |
const TUint32 KNSmlDMFotaConfigurationKey = 0x00000001;
|
|
37 |
|
|
38 |
// Enables the menu option Check updates.
|
|
39 |
const TUint KNSmlDMFotaEnableManualCheckFlag = 0x0001;
|
|
40 |
// Enables the menu option that allows the user to access the default
|
|
41 |
// profile used in FOTA sessions.
|
|
42 |
const TUint KNSmlDMFotaUnlockedDefaultProfileFlag = 0x0002;
|
|
43 |
// Enables the FOTA view.
|
|
44 |
const TUint KNSmlDMFotaEnableFotaViewFlag = 0x0004;
|
|
45 |
|
|
46 |
// CenRep keys for default dm profile used in the
|
|
47 |
// firmware update over the air.
|
|
48 |
const TUint32 KNSmlDMDefaultFotaProfileKey = 0x00000002;
|
|
49 |
|
|
50 |
// CenRep key that can be used to hide a DM profile from the
|
|
51 |
// profile list on the UI, but still retaining the UI functionality
|
|
52 |
// during server alerted session. The server identifier used
|
|
53 |
// to authenticate the server should be stored here.
|
|
54 |
const TUint32 KNSmlDMFotaHiddenProfileIdKey = 0x00000003;
|
|
55 |
|
|
56 |
// CenRep key that can be used to Enable/Disable the
|
|
57 |
// Connect menu in servers view options.Default value is 1
|
|
58 |
// which Enables the Connect menu
|
|
59 |
const TUint32 KNSmlDMEnableConnectMenuKey = 0x00000004;
|
|
60 |
|
|
61 |
// CenRep key that can be used to Enable/Disable the
|
|
62 |
// Servers menu in Main view options.Default value is 1
|
|
63 |
// which Enables the Servers menu
|
|
64 |
const TUint32 KNSmlDMServersMenuKey = 0x00000005;
|
|
65 |
|
|
66 |
// CenRep key that can be used to Enable/Disable the
|
|
67 |
// Settings menu in Main view options.Default value is 1
|
|
68 |
// which Enables the Settings menu
|
|
69 |
const TUint32 KNSmlDMSettingsMenuKey = 0x00000006;
|
|
70 |
|
|
71 |
// CenRep key that can be used to allow manual check updates
|
|
72 |
// or not.Default value is 1 which Enables the check updates
|
|
73 |
// menu in the main view
|
|
74 |
const TUint32 KNsmlDmManualCheckAllowed = 0x00000007;
|
|
75 |
|
|
76 |
// CenRep key that can be used to allow to show runtime versions
|
|
77 |
// or not.Default value is 0 which makes it off
|
|
78 |
const TUint32 KNsmlDmRuntimeVerSupport = 0x00000008;
|
|
79 |
|
|
80 |
// CenRep key that limits how often users may initiate a FOTA check.
|
|
81 |
// The value is specified in hours and should be bigger than 0.
|
|
82 |
// The default value is 24 hours. This key only has an effect when
|
|
83 |
// FF_FOTA_CHECK_LIMITATION is configured ON in the product's
|
|
84 |
// configuration.
|
|
85 |
const TUint32 KNsmlDmFotaCheckLimitation = 0x00000009;
|
|
86 |
|
|
87 |
#endif // NSMLDMSYNCAPP_PRIVATE_CR_KEYS_H
|
|
88 |
|
|
89 |
// End of File
|