📄 systemconstants.java
字号:
/**
* Class contains system specific constant values
*
*/
/*
* Change History:
* Author Date Version Details
* Jerome Josephraj 28 October 2002 1.00.00 Created to hold System specific constants
*/
package com.ddj.wsstruts.constant;
public class SystemConstants {
//System specific constant values
public static final String URL = "URL";
/*
*constant used to depict a soap exception
*/
public static final String WEBSERVICE_EXCEPTION = "Error in Webservice";
public static final String NEWS_LIST = "newsList";
//Generic pool enabler flag
public static final boolean GENERIC_POOL_ENABLED = true;
public static final String ERROR_PAGE = "error_page";
/*
* Flag to switch On or Off the Debug statements
*/
public static final boolean DEBUG = true;
/*
* DOMConfigurator file. Used in Log4J. Has to be moved to run time
* properties file after unit testing
*/
public static final String DOM_CONFIGURATOR_FILE = "c:/DomConfigurator.xml";
/*
* Following constant variables are used for logging
*/
public static final String METHOD_START = "Start method...";
public static final String METHOD_END = "Exiting method";
public static final String USER_CONTEXT_KEY = "UserContextKey";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -