pressrv_plat/xdm_settings_api/inc/XdmEngineDomainCRKeys.h
changeset 0 c8caa15ef882
equal deleted inserted replaced
-1:000000000000 0:c8caa15ef882
       
     1 /*
       
     2 * Copyright (c) 2005 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:   XDM Settings CenRep keys
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 #ifndef __XDMENGINEDOMAINCRKEYS__
       
    23 #define __XDMENGINEDOMAINCRKEYS__
       
    24 
       
    25 //Number of possible setting properties
       
    26 const TInt KXdmPropertyCount                                = 10;
       
    27 
       
    28 //UID of the XDM Settings Central Repository
       
    29 const TUid KCRUidXdmEngine                                  = { 0x10207453 };
       
    30 
       
    31 //UID of the XCAP Protocol variation repository
       
    32 const TUid KCRUIDXDMEngineXcapLocal                         = { 0x10282384 };
       
    33 
       
    34 /*
       
    35 * First column: Identifies a settings collection
       
    36 */
       
    37 const TUint32 KXdmSettingsId =                              0x00000000;
       
    38 
       
    39 /*
       
    40 * Second column: OMA XDM 1 - Uniquely identifies the application
       
    41 */
       
    42 const TUint32 KXDMAppId =                                   0x00000001;
       
    43 
       
    44 /*
       
    45 * Third column: OMA XDM 2 - User displayable name for the XDM service
       
    46 */
       
    47 const TUint32 KXDMAppName =                                 0x00000002;
       
    48 
       
    49 /*
       
    50 * Fourth column: OMA XDM 3 - Identity of the XDM service provider
       
    51 */
       
    52 const TUint32 KXDMProviderId =                              0x00000003;
       
    53 
       
    54 /*
       
    55 * Fifth column: OMA XDM 4 - Access point used for the XCAP traffic
       
    56 */
       
    57 const TUint32 KXDMNAPID =                                   0x00000004;
       
    58 
       
    59 /*
       
    60 * Sixth column: OMA XDM 5 - Reference to the SIP/IP core
       
    61 */
       
    62 const TUint32 KXDMSipReference =	                        0x00000005;
       
    63 
       
    64 /*
       
    65 * Seventh column: OMA XDM 6 - The root of all XDM resources
       
    66 * (points to the aggregation proxy address)
       
    67 */
       
    68 const TUint32 KXDMXcapRootURI =                             0x00000006;
       
    69 
       
    70 /*
       
    71 * Eight column: OMA XDM 7 - HTTP digest username
       
    72 */
       
    73 const TUint32 KXDMUserName =                                0x00000007;
       
    74 
       
    75 /*
       
    76 * Ninth column: OMA XDM 8 - HTTP digest password
       
    77 */
       
    78 const TUint32 KXDMPassword =                                0x00000008;
       
    79 
       
    80 /*
       
    81 * Tenth column: OMA XDM 9 - Authentication method for XDMS over XCAP
       
    82 */
       
    83 const TUint32 KXDMAuthType =                                0x00000009;
       
    84 
       
    85 //************************ Other Settings ******************************
       
    86 
       
    87 /*
       
    88 * Maximum amount of cache data (in KB)
       
    89 */
       
    90 const TUint32 KXDMXcapCacheSize =                           0x00000000;
       
    91 
       
    92 #endif      // __XDMENGINEDOMAINCRKEYS__
       
    93