All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.openservices.log.response.GetJobResponse Maven / Gradle / Ivy

package com.aliyun.openservices.log.response;

import com.aliyun.openservices.log.common.Job;
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 GetJobResponse extends Response {

    private static final long serialVersionUID = 6142695979281167810L;

    private Job job;

    public GetJobResponse(Map headers) {
        super(headers);
    }

    public Job getJob() {
        return job;
    }

    public void setJob(Job job) {
        this.job = job;
    }

    public void deserialize(JSONObject value, String requestId) throws LogException {
        job = new Job();
        try {
            job.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