use of com.emc.sa.service.vipr.object.tasks.SetObjectStorageACL in project coprhd-controller by CoprHD.
the class ObjectStorageUtils method setObjectShareACL.
public static void setObjectShareACL(URI bucketId, ObjectStorageACL acl) {
Task<BucketRestRep> task = execute(new SetObjectStorageACL(bucketId, acl));
addAffectedResource(task);
logInfo("object.bucket.acl", bucketId, task.getOpId());
}
Aggregations