bcconstant.java

来自「与SaaS软件提供的WebService的接口进行连通」· Java 代码 · 共 25 行

JAVA
25
字号
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 + =
减小字号Ctrl + -
显示快捷键?