|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Permission>
com.amazonaws.services.s3.model.Permission
public enum Permission
Specifies constants defining an access permission,
as granted to grantees in an
AccessControlList
. Only a limited set of permission are available;
each one is represented as a value in this enumeration.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
String |
toString()
Gets the string representation of this permission object as defined by Amazon S3, eg. |
static Permission |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Permission[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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.
Method Detail |
---|
public static Permission[] values()
for (Permission c : Permission.values()) System.out.println(c);
public static Permission valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getHeaderName()
public String toString()
FULL_CONTROL
.
toString
in class 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.
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |