com.qcloud.cos.model.UinGrantee Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api Show documentation
Show all versions of cos_api Show documentation
qcloud cos sdk for inner tencentyun
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;
}
}