com.aliyun.openservices.log.response.GetIngestionResponse Maven / Gradle / Ivy
package com.aliyun.openservices.log.response;
import com.aliyun.openservices.log.common.Ingestion;
import com.aliyun.openservices.log.exception.LogException;
import com.aliyun.openservices.log.internal.ErrorCodes;
import com.alibaba.fastjson.JSONObject;
import java.util.Map;
public class GetIngestionResponse extends Response {
private static final long serialVersionUID = 7412302190899635806L;
private Ingestion ingestion;
public GetIngestionResponse(Map headers) {
super(headers);
}
public Ingestion getIngestion() {
return ingestion;
}
public void deserialize(JSONObject value, String requestId) throws LogException {
ingestion = new Ingestion();
try {
ingestion.deserialize(value);
} catch (final Exception ex) {
throw new LogException(ErrorCodes.BAD_RESPONSE,
"Unable to deserialize JSON to model: " + ex.getMessage(), ex, requestId);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy