installationservices/swiconfig/JavaMIDletInstaller/javahelper_new.rss
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2008-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 the License "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 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 NAME JHLP
       
    21 
       
    22 #include <uikon.rh>
       
    23 
       
    24 RESOURCE RSS_SIGNATURE { }
       
    25 
       
    26 STRUCT JAVAOCSP_ERROR_SETTINGS
       
    27 	{
       
    28 	BYTE unableToObtainCertificateStatus;
       
    29 	BYTE invalidRevocationServerUrl;
       
    30 	BYTE responseSignatureValidationFailure;
       
    31 	BYTE invalidRevocationServerResponse;
       
    32 	BYTE missingNonce;
       
    33 	BYTE invalidCertificateStatusInformation;
       
    34 	BYTE certificateStatusIsUnknown;
       
    35 	}
       
    36 
       
    37 // show warnings for following java ocsp return errors
       
    38 // if set to 1, warning is displayed, the user gets choice if they wish to install
       
    39 // if set to 0, error is displayed and installation is cancelled
       
    40 RESOURCE JAVAOCSP_ERROR_SETTINGS r_javaocsp_error_settings
       
    41 	{
       
    42 	unableToObtainCertificateStatus = 1;
       
    43 	invalidRevocationServerUrl = 1;
       
    44 	responseSignatureValidationFailure = 0;
       
    45 	invalidRevocationServerResponse = 1;
       
    46 	missingNonce = 1;
       
    47 	invalidCertificateStatusInformation = 1;
       
    48 	certificateStatusIsUnknown = 0;
       
    49 	}
       
    50 
       
    51 STRUCT OTA_RETRIES
       
    52 	{
       
    53 	LONG Installation;
       
    54 	LONG Deletion;
       
    55 	}
       
    56 
       
    57 // define the maximum number of retries for Installation and Deletion notifications
       
    58 RESOURCE OTA_RETRIES max_ota_retries
       
    59 	{
       
    60 	Installation = 5;
       
    61 	Deletion = 10;
       
    62 	}
       
    63 
       
    64 //setting to contol OTA response suppression on drm error other than KErrCAPendingRights
       
    65 STRUCT SUPPRESS_OTA_RESPONSE_ON_NON_PENDINGRIGHTS_DRM_ERROR 
       
    66 	{
       
    67 	BYTE suppressotaresponseonnonpendingrightsdrmerror;
       
    68 	}
       
    69 
       
    70 RESOURCE SUPPRESS_OTA_RESPONSE_ON_NON_PENDINGRIGHTS_DRM_ERROR r_suppress_ota_response_on_non_pendingrights_drm_error
       
    71 	{
       
    72 	suppressotaresponseonnonpendingrightsdrmerror = 1;
       
    73 	}
       
    74 
       
    75 STRUCT CAF_SETTINGS
       
    76 	{
       
    77 	BYTE retrywithhttpmimetype;
       
    78 	BYTE intent;
       
    79 	}
       
    80 
       
    81 //caf / drm options
       
    82 RESOURCE CAF_SETTINGS r_caf_settings
       
    83 	{
       
    84 	retrywithhttpmimetype = 0;
       
    85 	intent = 9;
       
    86 	}
       
    87 
       
    88 STRUCT EKU_AlternativeCodeSigningOID
       
    89 	{
       
    90 	LTEXT codeSigningOID;
       
    91 	}
       
    92 
       
    93 
       
    94 RESOURCE EKU_AlternativeCodeSigningOID r_EKU_AlternativeCodeSigningOID
       
    95 	{
       
    96 	codeSigningOID = "";
       
    97 	}