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

com.aliyun.openservices.log.request.CreateReportRequest Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.request;


import com.aliyun.openservices.log.common.Report;
import com.aliyun.openservices.log.util.Args;

public class CreateReportRequest extends CreateJobRequest {

    private static final long serialVersionUID = -2062295245187846869L;

    private Report report;

    public CreateReportRequest(String project, Report report) {
        super(project);
        Args.notNull(report, "report");
        this.report = report;
    }

    public Report getReport() {
        return report;
    }

    @Override
    public Object getBody() {
        return report;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy