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

📄 bcbindingstub.java

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

import com.sforce.soap.enterprise.*;

/**
 * Artifact of binding stub, used by Class who need binding stub through 
 * the whole creation cycle. Please pay attention to this: during the whole
 * communication process for transmission, whatever model you use, for example,
 * bcLogin,bcNewLead,bcOpportunity,convertNewLeadToOpportunity,createNewLead,
 * createNewOpportunity,etc,should use the same bcBindingStub Class!
 * 
 * @author guowei
 *
 */
public class bcBindingStub {
	//Internal Sf SoapBindingStub
	public SoapBindingStub sbs;
	
/*	
	private SoapBindingStub sbs;
   
	public void setBinding(SoapBindingStub binding){
		this.sbs = binding;
	}
	
	public SoapBindingStub getBinding(){
		return this.sbs;
	}
*/	
	/**
	 * To initialize bcBindingStub by default.
	 * 
	 */
	public bcBindingStub(){	
	}
}

⌨️ 快捷键说明

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