vpnui/vpnpolins/inc/cmdfilexmltags.h
changeset 0 33413c0669b9
equal deleted inserted replaced
-1:000000000000 0:33413c0669b9
       
     1 /*
       
     2 * Copyright (c) 2007 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:   Literal constants for VPN command file XML tags
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef C_VPNCMDFILEXMLTAGS_H
       
    22 #define C_VPNCMDFILEXMLTAGS_H
       
    23 
       
    24 _LIT(KCmdFileStart, "vpncommands");
       
    25 
       
    26 // Versioninfo and its subtree
       
    27 _LIT(KCmdVersionInfo, "versionInfo");
       
    28 _LIT(KCmdVersion, "version");
       
    29 _LIT(KCmdDescription, "description");
       
    30 _LIT(KCmdCreated, "created");
       
    31 
       
    32 // Device and its subtree
       
    33 _LIT(KCmdDevice, "device");
       
    34 _LIT(KCmdDeviceLock, "devicelock");
       
    35 _LIT(KCmdLockPolicy, "lockPolicy");
       
    36 _LIT(KCmdRequired, "required");
       
    37 
       
    38 // PKCS#12 and its subtree
       
    39 _LIT(KCmdPKCS12, "pkcs12");
       
    40 _LIT(KCmdP12Pwd, "p12pwd");
       
    41 
       
    42 _LIT(KCmdUriSeparator, "/");
       
    43 
       
    44 _LIT8(KCmdCr, "\r");
       
    45 _LIT8(KCmdLf, "\n");
       
    46 
       
    47 _LIT(KTrue, "true");
       
    48 _LIT(KFalse, "false");
       
    49 
       
    50 // URIs for parameter value extracting
       
    51 
       
    52 // PKCS#12 password parameter
       
    53 _LIT8(KCmdPKCS12PasswordUri, "vpncommands/pkcs12/p12pwd/");
       
    54 
       
    55 // Devlock policy level setting
       
    56 _LIT8(KCmdDevlockPolicyUri, "vpncommands/device/devicelock/lockPolicy/");
       
    57 
       
    58 // Devlock policy level optionality
       
    59 _LIT8(KCmdDevlockRequiredUri, "vpncommands/device/devicelock/required/");
       
    60 
       
    61 #endif // C_VPNCMDFILEXMLTAGS_H
       
    62