We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, we can set options by, for example, rgwAdmin.setUserQuota(java.lang.String userId, long maxObjects, long maxSizeKB)
rgwAdmin.setUserQuota(java.lang.String userId, long maxObjects, long maxSizeKB)
Add an overloaded method such as rgwAdmin.setUserQuota(Quota quota) , so that user can :
rgwAdmin.setUserQuota(Quota quota)
Quota quota = rgwAdm.getUserQuota(userId) quota.setMaxObjects = 5566 rgwAdm.setUserQuota(quota)
All "set" methods listed in https://www.javadoc.io/static/io.github.twonote/radosgw-admin4j/2.0.2/org/twonote/rgwadmin4j/RgwAdmin.html are needed to be overloaded.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, we can set options by, for example,
rgwAdmin.setUserQuota(java.lang.String userId, long maxObjects, long maxSizeKB)
Add an overloaded method such as
rgwAdmin.setUserQuota(Quota quota)
, so that user can :All "set" methods listed in https://www.javadoc.io/static/io.github.twonote/radosgw-admin4j/2.0.2/org/twonote/rgwadmin4j/RgwAdmin.html are needed to be overloaded.
The text was updated successfully, but these errors were encountered: