javacommons/security/javasrc/com/nokia/mj/impl/security/utils/SecurityErrorMessage.java
branchRCL_3
changeset 14 04becd199f91
child 24 6c158198356e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/javacommons/security/javasrc/com/nokia/mj/impl/security/utils/SecurityErrorMessage.java	Tue Apr 27 16:30:29 2010 +0300
@@ -0,0 +1,80 @@
+/*
+* Copyright (c) 2008 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.security.utils;
+
+import com.nokia.mj.impl.utils.ErrorMessageBase;
+import com.nokia.mj.impl.utils.ResourceLoader;
+import java.util.Hashtable;
+
+/**
+ * Class defining Security short error messages.
+ *
+ * @author Nokia Corporation
+ * @version 1.0
+ */
+public final class SecurityErrorMessage extends ErrorMessageBase
+{
+    // Security error codes.
+    public static final int JAR_TAMPERED = 1;
+    public static final int CERT_NOT_AVAILABLE = 2;
+    public static final int UNEXPECTED_ERR = 3;
+    public static final int NETWORK_RESTRICTION_VIOLATION = 4;
+    public static final int OCSP_GENERAL_ERR = 5;
+
+    /*** ----------------------------- 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(JAR_TAMPERED), "jar_tampered");
+        messageTable.put(new Integer(CERT_NOT_AVAILABLE), "cert_not_available");
+        messageTable.put(new Integer(UNEXPECTED_ERR), "unexpected_err");
+        messageTable.put(new Integer(NETWORK_RESTRICTION_VIOLATION), "net_restr_violation");
+        messageTable.put(new Integer(OCSP_GENERAL_ERR), "ocsp_general");
+        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("javausermessages", "qtn_java_secur_error_");
+        }
+        return iRes;
+    }
+
+    /*** ----------------------------- PACKAGE ---------------------------- */
+    /*** ----------------------------- PRIVATE ---------------------------- */
+    /*** ----------------------------- NATIVE ----------------------------- */
+}