cn.leancloud.IMHookHandlerInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloud-function-sdk Show documentation
Show all versions of cloud-function-sdk Show documentation
leancloud leanengine cloud function library
package cn.leancloud;
import com.alibaba.fastjson.JSON;
import java.lang.reflect.Method;
import java.util.List;
import java.util.Map;
class IMHookHandlerInfo extends EngineHandlerInfo {
public IMHookHandlerInfo(String endpoint, Method handlerMethod,
List params, Class returnType, String hookKey) {
super(endpoint, handlerMethod, params, returnType, hookKey);
}
@Override
public Object parseParams(String requestBody) {
return JSON.parseObject(requestBody, Map.class);
}
}