1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| //
| // ASICloudFilesContainer.m
| //
| // Created by Michael Mayo on 1/7/10.
| //
|
| #import "ASICloudFilesContainer.h"
|
|
| @implementation ASICloudFilesContainer
|
| // regular container attributes
| @synthesize name, count, bytes;
|
| // CDN container attributes
| @synthesize cdnEnabled, ttl, cdnURL, logRetention, referrerACL, useragentACL;
|
| + (id)container {
| ASICloudFilesContainer *container = [[[self alloc] init] autorelease];
| return container;
| }
|
| -(void) dealloc {
| [name release];
| [cdnURL release];
| [referrerACL release];
| [useragentACL release];
| [super dealloc];
| }
|
| @end
|
|