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

eleme.openapi.sdk.oauth.parser.Converter Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.oauth.parser;

import eleme.openapi.sdk.oauth.response.ErrorResponse;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy