bcinit.java

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

JAVA
45
字号
package jgd.ebridgechina.bizComp;

/**
 * The model is build to make transmission between Salesforce.com and 
 * client side efficiently and effectively. Thereinto, the prefix of 
 * any Class is "bc" which means Business Companion.
 * 
 * Company: DigitalChina
 * Author:Guowei
 * Tel:(86)01082707073
 * Version: 0.1
 * Date:2007-6-6
 * 
 */



/**
 * 
 * The initial class for configuration
 * @author guowei
 *
 */
public class bcInit {
	/**
	 * To initialize whole setup item
	 * @param isdebug if show the whole debug information
	 * @param MaxLead maxium amount of new leads created at one time
	 * @param MaxOpportunity maxium amount of new opportunities created at one time
	 */
	public static void init(boolean isdebug,int MaxLead,int MaxOpportunity){
		bcConstant.isDebug = isdebug;
		bcConstant.maxLead = MaxLead;
		bcConstant.maxOpportunity = MaxOpportunity;		
	}
	/**
	 * To initialize static class bcConstant by default setup
	 *
	 */
	public static void init(){
		init(true,200,200);
	}
}

⌨️ 快捷键说明

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