com.aliyun.openservices.log.response.ListJobsResponse Maven / Gradle / Ivy
package com.aliyun.openservices.log.response;
import com.aliyun.openservices.log.common.Job;
import com.aliyun.openservices.log.internal.Unmarshaller;
import com.alibaba.fastjson.JSONArray;
import java.util.Map;
public class ListJobsResponse extends ResponseList {
private static final long serialVersionUID = -1867693972138681156L;
public ListJobsResponse(Map headers) {
super(headers);
}
@Override
public Unmarshaller unmarshaller() {
return new Unmarshaller() {
@Override
public Job unmarshal(JSONArray value, int index) {
Job job = new Job();
job.deserialize(value.getJSONObject(index));
return job;
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy