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

com.volcengine.tos.model.acl.Grant Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
package com.volcengine.tos.model.acl;

import com.fasterxml.jackson.annotation.JsonProperty;

@Deprecated
public class Grant {
    @JsonProperty("Grantee")
    private Grantee grantee;
    @JsonProperty("Permission")
    private String permission;

    public Grantee getGrantee() {
        return grantee;
    }

    public Grant setGrantee(Grantee grantee) {
        this.grantee = grantee;
        return this;
    }

    public String getPermission() {
        return permission;
    }

    public Grant setPermission(String permission) {
        this.permission = permission;
        return this;
    }

    @Override
    public String toString() {
        return "Grant{" +
                "grantee=" + grantee +
                ", permission='" + permission + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy