backupandrestore/backupengine/inc/sbeparserdefs.h
changeset 0 d0791faffa3f
child 13 81da3301b632
equal deleted inserted replaced
-1:000000000000 0:d0791faffa3f
       
     1 /**
       
     2 * Copyright (c) 2004-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:
       
    15 * Constant definitions
       
    16 * 
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 /**
       
    23  @file
       
    24 */
       
    25 #ifndef __SBEPARSERDEFS_H__
       
    26 #define __SBEPARSERDEFS_H__
       
    27 
       
    28 namespace conn
       
    29 	{
       
    30 	// Max number of characters that the field value for a hex UID can be i.e. 0x12345678
       
    31 	const TInt KSBEMaxHexStringLength = 10;
       
    32 	
       
    33 	// XML type
       
    34 	_LIT8(KMimeType, "text/xml");
       
    35 	
       
    36 	// Elements
       
    37 	_LIT8(KSupportsSelective, "supports_selective"); 
       
    38 	_LIT8(KPassiveBackup, "passive_backup");
       
    39 	_LIT8(KPublicBackup, "public_backup");
       
    40 	_LIT8(KIncludeFile, "include_file");
       
    41 	_LIT8(KIncludeDirectory, "include_directory");
       
    42 	_LIT8(KExclude, "exclude");
       
    43 	_LIT8(KBackupRegistration, "backup_registration");
       
    44 	_LIT8(KSystemBackup, "system_backup");
       
    45 	_LIT8(KCenrepBackup, "cenrep_backup");
       
    46 	_LIT8(KDBMSBackup, "dbms_backup");
       
    47 	_LIT8(KActiveBackup, "active_backup");
       
    48 	_LIT8(KRestore, "restore");
       
    49 	_LIT8(KProxyDataManager, "proxy_data_manager");
       
    50 	_LIT8(KJavaXMLElementMIDletSuite, "midlet_suite");
       
    51 	_LIT8(KJavaXMLElementIncludeDirectory, "java_include_directory");
       
    52 	_LIT8(KJavaXMLElementJavaBackupMIDlet, "java_backup_midlet");
       
    53 	
       
    54 	_LIT8(KProxySID, "SID");
       
    55 	_LIT8(KHexLeader, "0x");
       
    56 	_LIT8(KDatabase, "database");
       
    57 	_LIT8(KPolicy, "policy");
       
    58 	
       
    59 	_LIT8(KProcessName, "process_name");
       
    60 	_LIT8(KRequiresDelay, "requires_delay_to_prepare_data");
       
    61 	_LIT8(KSupportsInc, "supports_incremental");
       
    62 	_LIT8(KActiveType, "active_type");
       
    63 	
       
    64 	_LIT8(KActiveOnly, "activeonly");
       
    65 	_LIT8(KActiveAndProxy, "activeandproxy");
       
    66 	_LIT8(KProxyOnly, "proxyonly");
       
    67 	_LIT8(KRequiresReboot, "requires_reboot");
       
    68 	_LIT8(KDeleteBeforeRestore, "delete_before_restore");
       
    69 	_LIT8(KBaseBackupOnly, "base_backup_only");
       
    70 
       
    71 	}
       
    72 #endif // __SBEPARSERDEFS_H__