Statistics
| Branch: | Revision:

root / asi-http-request-with-pithos / Classes / CloudFiles / ASICloudFilesContainer.h @ be116d22

History | View | Annotate | Download (833 Bytes)

1
//
2
//  ASICloudFilesContainer.h
3
//
4
//  Created by Michael Mayo on 1/7/10.
5
//
6

    
7
#import <Foundation/Foundation.h>
8

    
9

    
10
@interface ASICloudFilesContainer : NSObject {
11
        
12
        // regular container attributes
13
        NSString *name;
14
        NSUInteger count;
15
        NSUInteger bytes;
16
        
17
        // CDN container attributes
18
        BOOL cdnEnabled;
19
        NSUInteger ttl;
20
        NSString *cdnURL;
21
        BOOL logRetention;
22
        NSString *referrerACL;
23
        NSString *useragentACL;
24
}
25

    
26
+ (id)container;
27

    
28
// regular container attributes
29
@property (retain) NSString *name;
30
@property (assign) NSUInteger count;
31
@property (assign) NSUInteger bytes;
32

    
33
// CDN container attributes
34
@property (assign) BOOL cdnEnabled;
35
@property (assign) NSUInteger ttl;
36
@property (retain) NSString *cdnURL;
37
@property (assign) BOOL logRetention;
38
@property (retain) NSString *referrerACL;
39
@property (retain) NSString *useragentACL;
40

    
41
@end