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

📄 constants.java

📁 为了下东西 随便发了个 datamining 的源代码
💻 JAVA
字号:
/*
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 of the License, or
 *    (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with this program; if not, write to the Free Software
 *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

package eti.bi.common;

/**
 * 
 * This the class that stores the constants in the BI Platform. If any of these is 
 * modified. The application server has to be restarted for the new value to take
 * effect.
 * 
 * @since 		1.0
 * @version 	$Revision$ $Date$
 * @author		$Author$
 */
public class Constants {
	
	/** The location of the system configuraiton file **/
	//public final static String CONFIG_FILE = "C:/etiKBBI/bi/sysconfig.properties";
	
	/** The key for storing the BIML repository path in the system configuration **/
	public final static String BIML_REPOSITORY_KEY = "bimlrepository";

	/** The key for storing the Operator Definition file path in the system configuration **/
	//public final static String OPERATOR_DEFINITION_FILE_KEY = "operatorDefinitionFile";

	/** The prefix of the BIML file name **/
	public final static String BIML_FILE_PREFIX = "BIML_";
	
	/** The pattern of the BIML ID format **/
	//public final static String BIML_ID_PATTERN = "0000000";
	
	/** The name of the BI data source **/
	public final static String DATASOURCE_NAME = "java:comp/env/jdbc/biDS";
	
	/** The type of the DAO used for KB Engine **/
	public final static String KB_DAO_TYPE = "MySQL";

	/** The type of the DAO used for BIML repository **/
	public final static String BIML_DAO_TYPE = "File";
	
	/** The type of the DAO used for User repository**/
	public final static String USER_DAO_TYPE = "MySQL";

	/** The type of the DAO used for BIACL repository**/
	public final static String BIACL_DAO_TYPE = "MySQL";

	/** The key for storing the authenticated subject in session **/	
	public final static String AUTH_SUBJECT_KEY = "authSubject";
	
	/** The location of the web services end point **/
	public final static String WS_ENDPOINT = "http://localhost:8080/bi/services/";

	public final static String BIML_ID_PATTERN = "0000000";
	
	
}

⌨️ 快捷键说明

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