⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmppconstant.java

📁 华为CNGP.CMPP.SGIP.CMPP源代码。
💻 JAVA
字号:
package com.huawei.insa2.comm.cmpp;

import com.huawei.insa2.util.Resource;

public class CMPPConstant {
	public static boolean debug;

	public static String LOGINING;

	public static String LOGIN_ERROR;

	public static String SEND_ERROR;

	public static String CONNECT_TIMEOUT;

	public static String STRUCTURE_ERROR;

	public static String NONLICETSP_ID;

	public static String SP_ERROR;

	public static String VERSION_ERROR;

	public static String OTHER_ERROR;

	public static String HEARTBEAT_ABNORMITY;

	public static String SUBMIT_INPUT_ERROR;

	public static String CONNECT_INPUT_ERROR;

	public static String CANCEL_INPUT_ERROR;

	public static String QUERY_INPUT_ERROR;

	public static String DELIVER_REPINPUT_ERROR;

	public static String ACTIVE_REPINPUT_ERROR;

	public static String SMC_MESSAGE_ERROR;

	public static String INT_SCOPE_ERROR;

	public static String STRING_LENGTH_GREAT;

	public static String STRING_NULL;

	public static String VALUE_ERROR;

	public static String FEE_USERTYPE_ERROR;

	public static String REGISTERED_DELIVERY_ERROR;

	public static String PK_TOTAL_ERROR;

	public static String PK_NUMBER_ERROR;

	public static final int Connect_Command_Id = 1;

	public static final int Connect_Rep_Command_Id = 0x80000001;

	public static final int Terminate_Command_Id = 2;

	public static final int Terminate_Rep_Command_Id = 0x80000002;

	public static final int Submit_Command_Id = 4;

	public static final int Submit_Rep_Command_Id = 0x80000004;

	public static final int Deliver_Command_Id = 5;

	public static final int Deliver_Rep_Command_Id = 0x80000005;

	public static final int Query_Command_Id = 6;

	public static final int Query_Rep_Command_Id = 0x80000006;

	public static final int Cancel_Command_Id = 7;

	public static final int Cancel_Rep_Command_Id = 0x80000007;

	public static final int Active_Test_Command_Id = 8;

	public static final int Active_Test_Rep_Command_Id = 0x80000008;

	public CMPPConstant() {
	}

	public static void initConstant(Resource resource) {
		if (LOGINING == null) {
			LOGINING = resource.get("smproxy/logining");
			LOGIN_ERROR = resource.get("smproxy/login-error");
			SEND_ERROR = resource.get("smproxy/send-error");
			CONNECT_TIMEOUT = resource.get("smproxy/connect-timeout");
			STRUCTURE_ERROR = resource.get("smproxy/structure-error");
			NONLICETSP_ID = resource.get("smproxy/nonlicetsp-id");
			SP_ERROR = resource.get("smproxy/sp-error");
			VERSION_ERROR = resource.get("smproxy/version-error");
			OTHER_ERROR = resource.get("smproxy/other-error");
			HEARTBEAT_ABNORMITY = resource.get("smproxy/heartbeat-abnormity");
			SUBMIT_INPUT_ERROR = resource.get("smproxy/submit-input-error");
			CONNECT_INPUT_ERROR = resource.get("smproxy/connect-input-error");
			CANCEL_INPUT_ERROR = resource.get("smproxy/cancel-input-error");
			QUERY_INPUT_ERROR = resource.get("smproxy/query-input-error");
			DELIVER_REPINPUT_ERROR = resource
					.get("smproxy/deliver-repinput-error");
			ACTIVE_REPINPUT_ERROR = resource
					.get("smproxy/active-repinput-error");
			SMC_MESSAGE_ERROR = resource.get("smproxy/smc-message-error");
			INT_SCOPE_ERROR = resource.get("smproxy/int-scope-error");
			STRING_LENGTH_GREAT = resource.get("smproxy/string-length-great");
			STRING_NULL = resource.get("smproxy/string-null");
			VALUE_ERROR = resource.get("smproxy/value-error");
			FEE_USERTYPE_ERROR = resource.get("smproxy/fee-usertype-error");
			REGISTERED_DELIVERY_ERROR = resource
					.get("smproxy/registered-delivery-erro");
			PK_TOTAL_ERROR = resource.get("smproxy/pk-total-error");
			PK_NUMBER_ERROR = resource.get("smproxy/pk-number-error");
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -