com.alibaba.ocean.rawsdk.client.imp.serialize.HttpRequestSerializer Maven / Gradle / Ivy
The newest version!
/**
*
*/
package com.alibaba.ocean.rawsdk.client.imp.serialize;
import com.alibaba.ocean.rawsdk.client.policy.Protocol;
/**
* @author hongbang.hb
*
*/
public class HttpRequestSerializer extends AbstractParamRequestSerializer {
public String supportedContentType() {
return Protocol.http.name();
}
@Override
protected String processNestedParameter(Object value) {
throw new RuntimeException(
"The param protocol does not support Nested parameters.");
}
}