Rename more

This commit is contained in:
Harshavardhana
2015-07-24 18:09:53 -07:00
parent 80b7bc7ccc
commit d6a0e0cc55
7 changed files with 16 additions and 16 deletions

View File

@@ -20,14 +20,14 @@ import "io"
// Collection of Donut specification interfaces
// Interface is a collection of object storage and management interface
// Interface is a collection of cloud storage and management interface
type Interface interface {
ObjectStorage
CloudStorage
Management
}
// ObjectStorage is a donut object storage interface
type ObjectStorage interface {
// CloudStorage is a donut cloud storage interface
type CloudStorage interface {
// Storage service operations
GetBucketMetadata(bucket string, signature *Signature) (BucketMetadata, error)
SetBucketMetadata(bucket string, metadata map[string]string, signature *Signature) error

View File

@@ -1,5 +1,5 @@
/*
* Mini Object Storage, (C) 2014 Minio, Inc.
* Minio Cloud Storage, (C) 2014 Minio, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@@ -53,7 +53,7 @@ type ListObjectsResponse struct {
// When response is truncated (the IsTruncated element value in the response
// is true), you can use the key name in this field as marker in the subsequent
// request to get next set of objects. Object storage lists objects in alphabetical
// request to get next set of objects. Server lists objects in alphabetical
// order Note: This element is returned only if you have delimiter request parameter
// specified. If response does not include the NextMaker and it is truncated,
// you can use the value of the last Key in the response as the marker in the

View File

@@ -1,5 +1,5 @@
/*
* Minimal object storage library (C) 2015 Minio, Inc.
* Minio Cloud Storage, (C) 2014 Minio, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.