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

com.qcloud.cos.model.UinGrantee Maven / Gradle / Ivy

The newest version!
package com.qcloud.cos.model;

public class UinGrantee implements Grantee {

    private String id;

    @Override
    public String getTypeIdentifier() {
        return "uin";
    }

    @Override
    public void setIdentifier(String id) {
        this.id = id;
    }

    @Override
    public String getIdentifier() {
        return this.id;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy