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

com.taobao.api.internal.mapping.Converter Maven / Gradle / Ivy

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

import com.taobao.api.ApiException;

/**
 * 动态格式转换器。
 * 
 * @author carver.gu
 * @since 1.0, Apr 11, 2010
 */
public interface Converter {

	/**
	 * 把字符串转换为响应对象。
	 * 
	 * @param  领域泛型
	 * @param rsp 响应字符串
	 * @param clazz 领域类型
	 * @return 响应对象
	 */
	public  T toResponse(String rsp, Class clazz) throws ApiException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy