public enum Permission extends Enum<Permission>
AccessControlList
. Only a limited set of permission are available;
each one is represented as a value in this enumeration.枚举常量和说明 |
---|
FullControl
Provides READ, WRITE, READ_ACP, and WRITE_ACP permissions.
|
Read
Grants permission to list the bucket when applied to a bucket.
|
ReadAcp
Grants permission to read the ACL for the applicable bucket or object.
|
Write
Grants permission to create, overwrite, and
delete any objects in the bucket.
|
WriteAcp
Gives permission to overwrite the ACP for the applicable bucket or
object.
|
限定符和类型 | 方法和说明 |
---|---|
String |
getHeaderName()
Returns the name of the header used to grant this permission.
|
static Permission |
parsePermission(String str)
Returns the
Permission enumeration value representing the specified Amazon
S3 Region ID string. |
static HashSet<Permission> |
parsePermissions(List<String> strs) |
String |
toString()
Gets the string representation of this permission object as defined by
Amazon S3, eg.
|
static Permission |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static Permission[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final Permission FullControl
It does not convey additional rights and is provided only for convenience.
public static final Permission Read
public static final Permission Write
This permission is not supported for objects.
public static final Permission ReadAcp
The owner of a bucket or object always implicitly has this permission.
public static final Permission WriteAcp
The owner of a bucket or object always has this permission implicitly.
Granting this permission is equivalent to granting FULL_CONTROL
because
the grant recipient can make any changes to the ACP.
public static Permission[] values()
for (Permission c : Permission.values()) System.out.println(c);
public static Permission valueOf(String name)
name
- 要返回的枚举常量的名称。IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量NullPointerException
- 如果参数为空值public String getHeaderName()
public String toString()
FULL_CONTROL
.toString
在类中 Enum<Permission>
FULL_CONTROL
.public static Permission parsePermission(String str)
Permission
enumeration value representing the specified Amazon
S3 Region ID string. If specified string doesn't map to a known Amazon S3
Region, returns null
.str
- A string representation of an Amazon S3 permission, eg.
FULL_CONTROL
Permission
object represented by the given permission string,
Returns null
if the string isn't a valid representation
of an Amazon S3
permission.public static HashSet<Permission> parsePermissions(List<String> strs)
Copyright © 2016. All rights reserved.