Uses of Class
com.google.cloud.storage.Acl.Entity
Packages that use Acl.Entity
-
Uses of Acl.Entity in com.google.cloud.storage
Subclasses of Acl.Entity in com.google.cloud.storageModifier and TypeClassDescriptionstatic final classClass for ACL Domain entities.static final classClass for ACL Group entities.static final classClass for ACL Project entities.static final classstatic final classClass for ACL User entities.Methods in com.google.cloud.storage that return Acl.EntityModifier and TypeMethodDescriptionAcl.getEntity()Returns the entity for this ACL object.BlobInfo.getOwner()Returns the blob's owner.BucketInfo.getOwner()Returns the bucket's owner.Methods in com.google.cloud.storage with parameters of type Acl.EntityModifier and TypeMethodDescriptionbooleanBlob.deleteAcl(Acl.Entity entity) Deletes the ACL entry for the specified entity on this blob.booleanBucket.deleteAcl(Acl.Entity entity) Deletes the ACL entry for the specified entity on this bucket.booleanStorage.deleteAcl(BlobId blob, Acl.Entity entity) Deletes the ACL entry for the specified entity on the specified blob.booleanStorage.deleteAcl(String bucket, Acl.Entity entity) booleanStorage.deleteAcl(String bucket, Acl.Entity entity, Storage.BucketSourceOption... options) Deletes the ACL entry for the specified entity on the specified bucket.booleanBucket.deleteDefaultAcl(Acl.Entity entity) Deletes the default object ACL entry for the specified entity on this bucket.booleanStorage.deleteDefaultAcl(String bucket, Acl.Entity entity) Deletes the default object ACL entry for the specified entity on the specified bucket.Blob.getAcl(Acl.Entity entity) Returns the ACL entry for the specified entity on this blob ornullif not found.Bucket.getAcl(Acl.Entity entity) Returns the ACL entry for the specified entity on this bucket ornullif not found.Storage.getAcl(BlobId blob, Acl.Entity entity) Returns the ACL entry for the specified entity on the specified blob ornullif not found.Storage.getAcl(String bucket, Acl.Entity entity) Storage.getAcl(String bucket, Acl.Entity entity, Storage.BucketSourceOption... options) Returns the ACL entry for the specified entity on the specified bucket ornullif not found.Bucket.getDefaultAcl(Acl.Entity entity) Returns the default object ACL entry for the specified entity on this bucket ornullif not found.Storage.getDefaultAcl(String bucket, Acl.Entity entity) Returns the default object ACL entry for the specified entity on the specified bucket ornullif not found.static Acl.BuilderAcl.newBuilder(Acl.Entity entity, Acl.Role role) Returns a builder forAclobjects.static AclAcl.of(Acl.Entity entity, Acl.Role role) Returns anAclobject.Acl.Builder.setEntity(Acl.Entity entity) Sets the entity for the ACL object.