javacommons/utils/javasrc/com/nokia/mj/impl/utils/InstallerDetailedErrorMessage.java
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 13 Oct 2010 14:23:59 +0300
branchRCL_3
changeset 83 26b2b12093af
parent 60 6c158198356e
permissions -rw-r--r--
Revision: v2.2.17 Kit: 201041

/*
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/

package com.nokia.mj.impl.utils;

import com.nokia.mj.impl.utils.ResourceLoader;
import java.util.Hashtable;

/**
 * Class defining Installer detailed error messages.
 *
 * @author Nokia Corporation
 * @version 1.0
 */
public final class InstallerDetailedErrorMessage extends ErrorMessageBase
{
    // Installation and uninstallation related detailed error codes.
    public static final int NO_MEM = 1;
    public static final int NO_NET = 2;
    public static final int ATTR_BAD_SYNTAX = 3;
    public static final int ATTR_MISSING = 4;
    public static final int ATTR_MISMATCH = 5;
    public static final int ATTR_UNSUPPORTED = 6;
    public static final int ATTR_HANDLING_FAILED = 7;
    public static final int CERT_UNSUPPORTED = 8;
    public static final int PROT_PKG_MISUSE = 9;
    public static final int DIFFERENT_SIGNERS = 10;
    public static final int UNINST_BLOCKED = 11;
    public static final int INTERNAL_ERROR = 12;
    public static final int NO_MEM_MB = 13;

    /*** ----------------------------- PUBLIC ------------------------------ */
    /*** ---------------------------- PROTECTED --------------------------- */

    /**
     * Method for getting message table where key is an Integer value for
     * the error code, and value is an error message String id.
     */
    private static Hashtable iMessageTable = null;
    protected Hashtable getMessageTable()
    {
        if (iMessageTable != null)
        {
            return iMessageTable;
        }
        Hashtable messageTable = new Hashtable();
        messageTable.put(new Integer(NO_MEM), "no_mem_detail");
        messageTable.put(new Integer(NO_MEM_MB), "no_mem_detail_mb");
        messageTable.put(new Integer(NO_NET), "no_net_detail");
        messageTable.put(new Integer(ATTR_BAD_SYNTAX), "attr_bad_syntax");
        messageTable.put(new Integer(ATTR_MISSING), "attr_missing");
        messageTable.put(new Integer(ATTR_MISMATCH), "attr_mismatch");
        messageTable.put(new Integer(ATTR_UNSUPPORTED), "attr_unsupported_value");
        messageTable.put(new Integer(ATTR_HANDLING_FAILED), "attr_handling_failed");
        messageTable.put(new Integer(CERT_UNSUPPORTED), "cert_unsupported");
        messageTable.put(new Integer(PROT_PKG_MISUSE), "protected_pkg_misuse");
        messageTable.put(new Integer(DIFFERENT_SIGNERS), "different_signers");
        messageTable.put(new Integer(UNINST_BLOCKED), "uninst_blocked");
        messageTable.put(new Integer(INTERNAL_ERROR), "internal");
        iMessageTable = messageTable;
        return iMessageTable;
    }

    /**
     * Method for retrieving the ResourceLoader instance that is used
     * to localise error messages.
     */
    private static ResourceLoader iRes = null;
    protected ResourceLoader getResourceLoader()
    {
        if (iRes == null)
        {
            iRes = ResourceLoader.getInstance("javainstallation", "qtn_java_inst_error_");
        }
        return iRes;
    }

    /*** ----------------------------- PACKAGE ---------------------------- */
    /*** ----------------------------- PRIVATE ---------------------------- */
    /*** ----------------------------- NATIVE ----------------------------- */
}