Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (500 Bytes)

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

    
7
#import "ASICloudFilesContainer.h"
8

    
9

    
10
@implementation ASICloudFilesContainer
11

    
12
// regular container attributes
13
@synthesize name, count, bytes;
14

    
15
// CDN container attributes
16
@synthesize cdnEnabled, ttl, cdnURL, logRetention, referrerACL, useragentACL;
17

    
18
+ (id)container {
19
	ASICloudFilesContainer *container = [[[self alloc] init] autorelease];
20
	return container;
21
}
22

    
23
-(void) dealloc {
24
	[name release];
25
	[super dealloc];
26
}
27

    
28
@end