![JAR search and dependency download from the Maven repository](/logo.png)
com.dahuatech.icc.oauth.unmarshaller.Unmarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-oauth Show documentation
Show all versions of java-sdk-oauth Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.icc.oauth.unmarshaller;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.http.IccResponse;
/**
* 协议转换接口
*
* @author 232676
* @since 1.0.0 2020-10-24 20:59:11
*/
public interface Unmarshaller {
/**
* 字符串转换对象
*
* @param clas 对象
* @param content 字符串JSON
* @param 对象类
* @return 返回转换对象
* @throws ClientException 异常信息
*/
T unmarshal(Class clas, String content) throws ClientException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy