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