applicationmanagement/inc/ampskeys.h
changeset 47 d316aecb87fd
equal deleted inserted replaced
46:b9b00b134b0d 47:d316aecb87fd
       
     1 /*
       
     2 * Copyright (c) 2009 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:  Implementation of applicationmanagement components
       
    15  *
       
    16 */
       
    17 
       
    18  
       
    19 #ifndef __AMPSKEYS_H__
       
    20 #define __AMPSKEYS_H__
       
    21 
       
    22 // Application Management Server UID for Publish and Subscribe key
       
    23 
       
    24 const TUid KUidPSApplicationManagementKeys = { 0x200267FB };
       
    25 
       
    26 // P&S key to check whether AM UI Server is enabled or disabled
       
    27 
       
    28 const TUint KAMServerUIEnabled = 0x00001;
       
    29 
       
    30 // P&S key to check whether device management session is silent
       
    31 // or interactive(can be information or nonspecified as well)
       
    32 
       
    33 const TUint KAMOperationNonSilent = 0x00002;
       
    34 
       
    35 // P&S key to Notify OMA SCOMO adapter as soon as download is
       
    36 // complete. This will be applicable in case of Sync operation
       
    37 
       
    38 const TUint KSyncNotifier = 0x000004;
       
    39 
       
    40 // Set this P&S key so that DM UI will not be closed in case of server initiated session
       
    41 // applicable only for Interactive, Informative or Non specified
       
    42 
       
    43 const TUint KDMUINotClosed = 0x00005;
       
    44 
       
    45 
       
    46 // DM UI application ID
       
    47 
       
    48 const TUid KPSUidNSmlDMSyncApp = {0x101f6de5};
       
    49 
       
    50 // Key defined in DM UI Fw to know application management server
       
    51 // whether session started in silent mode or non-silent
       
    52 
       
    53 const TUint32 KSilentSession = 0x0000000D;
       
    54 
       
    55 
       
    56 
       
    57 
       
    58 #endif
       
    59 
       
    60