policymanagement/policyengine/policyengineserver/inc/OperationParserConstants.h
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 /*
       
     2 * Copyright (c) 2000 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 policymanagement components
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef OPERATION_PARSER_CONSTANTS_HEADER__
       
    20 #define OPERATION_PARSER_CONSTANTS_HEADER__
       
    21 
       
    22 namespace OperationParserConstants
       
    23 {
       
    24 	//elements
       
    25 	_LIT8( Package, "Package");
       
    26 	_LIT8( Operation, "Operation");
       
    27 	_LIT8( Data, "Data");
       
    28 
       
    29 	//attributes
       
    30 	_LIT8( ActionId, "action_id");
       
    31 	_LIT8( TargetId, "target_id");
       
    32 	_LIT8( UseBearerCert, "use_bearer_certificate");
       
    33 	_LIT8( AddServerId, "add_server_id");
       
    34 	_LIT8( RemoveServerId, "remove_server_id");
       
    35 	_LIT8( ResetAllTag, "*");
       
    36 	
       
    37 	//values
       
    38 	_LIT8( True, "true");
       
    39 	_LIT8( False, "false");
       
    40 	
       
    41 
       
    42 	//Operations
       
    43 	_LIT8( Add, "Add");
       
    44 	_LIT8( Remove, "Remove");
       
    45 	_LIT8( Replace, "Replace");
       
    46 	
       
    47 	const TPtrC8 XMLStack[3] = { Package(), Operation(), Data()};
       
    48 	
       
    49 }
       
    50 
       
    51 #endif