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

com.aliyun.openservices.log.request.JobRequest 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.Consts;
import com.aliyun.openservices.log.util.Args;

public abstract class JobRequest extends BasicRequest {

    private String name;

    public JobRequest(String project) {
        super(project);
    }

    public JobRequest(String project, String name) {
        super(project);
        Args.notNullOrEmpty(name, "name");
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getUri() {
        return Consts.JOB_URI + "/" + name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy