policymanagement/dmutilserver/inc/PMUtilInternalCRKeys.h
changeset 0 b497e44ab2fc
child 66 08c8318ec9cb
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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 *     SyncML Device Management internal CenRep key definitions
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef PM_UTIL_PRIVATE_CR_KEYS_H
       
    21 #define PM_UTIL_PRIVATE_CR_KEYS_H
       
    22 
       
    23 /**
       
    24 * SyncML Device Management Internal Keys UID
       
    25 */
       
    26 const TUid KCRUidPolicyManagementUtilInternalKeys = {0x10207843};
       
    27 
       
    28 /**
       
    29 * CenRep key for Session Certificate ID:
       
    30 * Contains DM session certificate
       
    31 *
       
    32 * Possible binary values:
       
    33 * Certificate in a "TPckg<TCertInfo>"-format
       
    34 *
       
    35 * Default value: -1 (not defined)
       
    36 *
       
    37 *
       
    38 */
       
    39 const TUint32 KSyncMLSessionCertificate = 0x00000001;
       
    40 
       
    41 /**
       
    42 * CenRep key for policy change counter:
       
    43 * Indicates changes in policy structure.
       
    44 *
       
    45 * Possible integer values:
       
    46 * Positive numbers
       
    47 *
       
    48 * Default value: -1 (not defined)
       
    49 *
       
    50 *
       
    51 */
       
    52 const TUint32 KPolicyChangeCounter = 0x00000002;
       
    53 
       
    54 
       
    55 /**
       
    56 * CenRep key for terminal security state key:
       
    57 * Indicates terminal security is turned on or off
       
    58 *
       
    59 * Possible integer values:
       
    60 * 0 terminal security is not active, 1 terminal security is active
       
    61 *
       
    62 * Default value: 0
       
    63 *
       
    64 *
       
    65 */
       
    66 const TUint32 KTerminalSecurityStateKey = 0x00000003;
       
    67 
       
    68 
       
    69 /**
       
    70 * CenRep key for RFS counter:
       
    71 * Indicates that RFS is performed
       
    72 *
       
    73 * Possible integer values:
       
    74 * Positive numbers
       
    75 *
       
    76 * Default value: -1 (not defined)
       
    77 *
       
    78 *
       
    79 */
       
    80 const TUint32 KRFSCounterKey = 0x00000004;
       
    81 
       
    82 /**
       
    83 * CenRep key for RFS counter:
       
    84 * Indicates that RFS is performed
       
    85 *
       
    86 * Possible integer values:
       
    87 * Positive numbers
       
    88 *
       
    89 * Default value: -1 (not defined)
       
    90 *
       
    91 *
       
    92 */
       
    93 
       
    94 
       
    95 /**
       
    96 * CenRep key for SyncML session parameters:
       
    97 * Used to delivery session parameters in silent DM mode
       
    98 *
       
    99 * Possible binary values:
       
   100 * Parameters in a "TPckg<TSyncMLAppLaunchNotifParams>"-format
       
   101 *
       
   102 * Default value: -1 (not defined)
       
   103 *
       
   104 *
       
   105 */
       
   106 const TUint32 KSyncMLSessionParamsKey = 0x00000005;
       
   107 
       
   108 /**
       
   109 * CenRep key for SyncML forced certificate check:
       
   110 * Indicates is certificate check needed when connection is established (needed in silent DM mode)
       
   111 *
       
   112 * Possible binary values:
       
   113 * 0 certificate check is off, 1 certificate check is on.
       
   114 *
       
   115 * Default value: -1 (not defined)
       
   116 *
       
   117 *
       
   118 */
       
   119 const TUint32 KSyncMLForcedCertificateCheckKey = 0x00000006;
       
   120 
       
   121 #endif // PM_UTIL_PRIVATE_CR_KEYS_H
       
   122