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

com.qimen.api.QimenClient Maven / Gradle / Ivy

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

import com.taobao.api.ApiException;

/**
 * 奇门客户端。
 * 
 * @author fengsheng
 * @since Jan 27, 2016
 */
public interface QimenClient {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy