com.amazonaws.services.s3.model.EmailAddressGrantee Java Examples

The following examples show how to use com.amazonaws.services.s3.model.EmailAddressGrantee. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SetAcl.java    From aws-doc-sdk-examples with Apache License 2.0 6 votes vote down vote up
public static void setBucketAcl(String bucket_name, String email, String access) {
    System.out.format("Setting %s access for %s\n", access, email);
    System.out.println("on bucket: " + bucket_name);

    final AmazonS3 s3 = AmazonS3ClientBuilder.standard().withRegion(Regions.DEFAULT_REGION).build();
    try {
        // get the current ACL
        AccessControlList acl = s3.getBucketAcl(bucket_name);
        // set access for the grantee
        EmailAddressGrantee grantee = new EmailAddressGrantee(email);
        Permission permission = Permission.valueOf(access);
        acl.grantPermission(grantee, permission);
        s3.setBucketAcl(bucket_name, acl);
    } catch (AmazonServiceException e) {
        System.err.println(e.getErrorMessage());
        System.exit(1);
    }
}
 
Example #2
Source File: SetAcl.java    From aws-doc-sdk-examples with Apache License 2.0 6 votes vote down vote up
public static void setObjectAcl(String bucket_name, String object_key, String email, String access) {
    System.out.format("Setting %s access for %s\n", access, email);
    System.out.println("for object: " + object_key);
    System.out.println(" in bucket: " + bucket_name);

    final AmazonS3 s3 = AmazonS3ClientBuilder.standard().withRegion(Regions.DEFAULT_REGION).build();
    try {
        // get the current ACL
        AccessControlList acl = s3.getObjectAcl(bucket_name, object_key);
        // set access for the grantee
        EmailAddressGrantee grantee = new EmailAddressGrantee(email);
        Permission permission = Permission.valueOf(access);
        acl.grantPermission(grantee, permission);
        s3.setObjectAcl(bucket_name, object_key, acl);
    } catch (AmazonServiceException e) {
        System.err.println(e.getErrorMessage());
        System.exit(1);
    }
}
 
Example #3
Source File: AbstractS3Processor.java    From localization_nifi with Apache License 2.0 5 votes vote down vote up
protected Grantee createGrantee(final String value) {
    if (StringUtils.isEmpty(value)) {
        return null;
    }

    if (value.contains("@")) {
        return new EmailAddressGrantee(value);
    } else {
        return new CanonicalGrantee(value);
    }
}
 
Example #4
Source File: AbstractS3Processor.java    From nifi with Apache License 2.0 5 votes vote down vote up
protected Grantee createGrantee(final String value) {
    if (StringUtils.isEmpty(value)) {
        return null;
    }

    if (value.contains("@")) {
        return new EmailAddressGrantee(value);
    } else {
        return new CanonicalGrantee(value);
    }
}