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

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

package com.aliyun.openservices.log.request;

import java.util.Collections;


public class UpdateProjectRequest extends Request {

    private String description;

    public UpdateProjectRequest(String project, String description) {
        super(project);
        this.description = description;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public Object getBody() {
        return Collections.singletonMap("description", description);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy