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

📄 bcconstant.java

📁 与SaaS软件提供的WebService的接口进行连通
💻 JAVA
字号:
package jgd.ebridgechina.bizComp;

/**
 * The model is to create Constant for other model to use. 
 * isDebug: whether debug information is needed or not
 * timeOut: how long model stop inquiring to access to salesforce.com
 * maxLead: maxium amount of leads model transmits to salseforce at one time
 * maxOpportunity: maxium amount of opportunity transmitted to SF at one time
 * 
 * All the parameter here can be modified by bcInit model.But SF suggest that
 * maxLead and maxOpportunity be 200 by default.
 * 
 * @author guowei
 *
 */

public class bcConstant {

	public static boolean isDebug = true;
	public static int timeOut = 60000;
	public static int maxLead = 200;
	public static int maxOpportunity = 200;
	
}

⌨️ 快捷键说明

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