本文整理了Java中com.google.cloud.storage.Bucket.listAcls()
方法的一些代码示例,展示了Bucket.listAcls()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Bucket.listAcls()
方法的具体详情如下:
包路径:com.google.cloud.storage.Bucket
类名称:Bucket
方法名:listAcls
[英]Lists the ACL entries for this bucket.
Example of listing the ACL entries.
List acls = bucket.listAcls();}
[中]列出此存储桶的ACL条目。
列出ACL条目的示例。
List acls = bucket.listAcls();}
代码示例来源:origin: googleapis/google-cloud-java
/** Example of listing the ACL entries. */
// [TARGET listAcls()]
public List<Acl> listAcls() {
// [START listAcls]
List<Acl> acls = bucket.listAcls();
for (Acl acl : acls) {
// do something with ACL entry
}
// [END listAcls]
return acls;
}
代码示例来源:origin: googleapis/google-cloud-java
@Test
public void testListAcls() throws Exception {
initializeExpectedBucket(4);
expect(storage.getOptions()).andReturn(mockOptions);
expect(storage.listAcls(BUCKET_INFO.getName())).andReturn(ACLS);
replay(storage);
initializeBucket();
assertEquals(ACLS, bucket.listAcls());
}
内容来源于网络,如有侵权,请联系作者删除!