use of models.datatable.BucketACLDataTable in project coprhd-controller by CoprHD.
the class ObjectBuckets method listBucketACL.
public static void listBucketACL(String id) {
renderArgs.put("dataTable", new BucketACLDataTable());
renderArgs.put("bucketId", uri(id));
ViPRCoreClient client = BourneUtil.getViprClient();
BucketRestRep bucket = client.objectBuckets().get(uri(id));
renderArgs.put("bucketName", bucket.getName());
BucketACLForm bucketACL = new BucketACLForm();
render(bucketACL);
}
Aggregations