bcbindingstub.java

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

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