java_stubs/javaregistry/clientserver/client/inc/javaregistrypropertyids.h
branchRCL_3
changeset 8 014f8c42e1d4
parent 0 3fd91c96c86c
equal deleted inserted replaced
7:9d598f7f02da 8:014f8c42e1d4
       
     1 /*
       
     2 * Copyright (c) 2005-2006 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:  javaregistrypropertyids definition
       
    15 *
       
    16 */
       
    17 
       
    18 #include <e32base.h>
       
    19 
       
    20 #ifndef JAVAREGISTRYPROPERTYIDS_H
       
    21 #define JAVAREGISTRYPROPERTYIDS_H
       
    22 
       
    23 namespace Java
       
    24 {
       
    25 namespace Manager
       
    26 {
       
    27 namespace Registry
       
    28 {
       
    29 /**
       
    30  * Common Id's of properties processed by
       
    31  * CWriteableJavaRegistryEntry class.
       
    32  *
       
    33  * @since S60 v3.2
       
    34  */
       
    35 enum TEntryIDs
       
    36 {
       
    37     EPropType = 0,
       
    38     EPropName,
       
    39     EPropCertificateChains,
       
    40     EPropDrive,
       
    41     EPropDrmContentId
       
    42 };
       
    43 
       
    44 /**
       
    45  * General package specific Id's of properties processed by
       
    46  * CWriteableJavaRegistryPackageEntry class.
       
    47  *
       
    48  * @since S60 v3.2
       
    49  */
       
    50 enum TPackageEntryIDs
       
    51 {
       
    52     EPropVersion = 100,
       
    53     EPropVendor,
       
    54     EPropUninstallable,
       
    55     EPropApplicationUids,
       
    56     EPropDownloadPlugin,
       
    57     EPropInstallPlugin,
       
    58     EPropSize,
       
    59     EPropSerializedAttributes
       
    60 };
       
    61 
       
    62 /**
       
    63  * Application specific Id's of properties processed by
       
    64  * CWriteableJavaRegistryApplicationEntry class.
       
    65  *
       
    66  * @since S60 v3.2
       
    67  */
       
    68 enum TApplicationEntryIDs
       
    69 {
       
    70     EPropStartable = 200,
       
    71     EPropVisible,
       
    72     EPropResident,
       
    73     EPropGroupName,
       
    74     EPropInstallPackage
       
    75 };
       
    76 
       
    77 /*
       
    78  * MIDP Registry ID ranges
       
    79  */
       
    80 const TInt KMidletSuiteRangeStart = 300;
       
    81 const TInt KMidletRangeStart = 400;
       
    82 
       
    83 /*
       
    84  * OSGi Registry ID ranges
       
    85  */
       
    86 const TInt KDPRangeStart = 500;
       
    87 const TInt KOAMSuiteRangeStart = 600;
       
    88 const TInt KOAMRangeStart = 700;
       
    89 const TInt KERCPRangeStart = 800;
       
    90 
       
    91 }// namespace Registry
       
    92 }// namespace Manager
       
    93 }// namespace Java
       
    94 
       
    95 
       
    96 #endif // JAVAREGISTRYPROPERTYIDS_H