All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taobao.api.TaobaoClient Maven / Gradle / Ivy

There is a newer version: 1.8.10
Show newest version
package com.taobao.api;

/**
 * 淘宝客户端。
 * 
 * @author carver.gu
 * @since 1.0, Sep 12, 2009
 */
public interface TaobaoClient {

	/**
	 * 执行公开API请求。
	 * 
	 * @param  具体的API响应类
	 * @param request 具体的API请求类
	 * @return 具体的API响应
	 */
	public  T execute(TaobaoRequest request) throws ApiException;

	/**
	 * 执行隐私API请求。
	 * 
	 * @param  具体的API响应类
	 * @param request 具体的API请求类
	 * @param session 用户授权码
	 * @return 具体的API响应
	 */
	public  T execute(TaobaoRequest request, String session) throws ApiException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy