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

com.aliyun.datahub.model.GetProjectRequest Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.model;

import com.aliyun.datahub.exception.InvalidParameterException;

public class GetProjectRequest {
    private String projectName;

    public GetProjectRequest(String projectName) {
        if (projectName == null) {
            throw new InvalidParameterException("project name is null");
        }

        this.projectName = projectName;
    }

    public String getProjectName() {
        return this.projectName;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy