> + > +import java.io.Closeable; > + > +import javax.ws.rs.Path; > + > +import org.jclouds.googlecloudstorage.features.BucketAccessControlsApi; > +import org.jclouds.rest.annotations.Delegate; > + > +/** > + * Provide access to GoogleCloudStorage. > + * > + * @author Bhathiya Supun > + * @see <a > href="https://developers.google.com/storage/docs/json_api/v1/">api doc /a> > + */ > + > +public interface GoogleCloudStorageApi extends Closeable {
This is a more general comment, but could we stage commits slightly differently, e.g., 1. listing buckets 2. creating/deleting buckets 3. bucket metadata Presently this commit relies on a bucket already existing which we generally try to avoid. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/27/files#r13829503
