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

com.volcengine.tos.model.bucket.AccessControlTranslation Maven / Gradle / Ivy

package com.volcengine.tos.model.bucket;

import com.fasterxml.jackson.annotation.JsonProperty;

public class AccessControlTranslation {
    @JsonProperty("Owner")
    private String owner;

    public String getOwner() {
        return owner;
    }

    public AccessControlTranslation setOwner(String owner) {
        this.owner = owner;
        return this;
    }

    @Override
    public String toString() {
        return "AccessControlTranslation{" +
                "owner='" + owner + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy