Statistics
| Branch: | Revision:

root / asi-http-request-with-pithos / Classes / Pithos / ASIPithosObject.m @ be116d22

History | View | Annotate | Download (3.1 kB)

1
//  ASIPithosObject.m
2
//  Based on ASICloudFilesObject.m
3
//
4
// Copyright 2011 GRNET S.A. All rights reserved.
5
//
6
// Redistribution and use in source and binary forms, with or
7
// without modification, are permitted provided that the following
8
// conditions are met:
9
// 
10
//   1. Redistributions of source code must retain the above
11
//      copyright notice, this list of conditions and the following
12
//      disclaimer.
13
// 
14
//   2. Redistributions in binary form must reproduce the above
15
//      copyright notice, this list of conditions and the following
16
//      disclaimer in the documentation and/or other materials
17
//      provided with the distribution.
18
// 
19
// THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
20
// OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
23
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26
// USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27
// AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
// POSSIBILITY OF SUCH DAMAGE.
31
// 
32
// The views and conclusions contained in the software and
33
// documentation are those of the authors and should not be
34
// interpreted as representing official policies, either expressed
35
// or implied, of GRNET S.A.
36

    
37
#import "ASIPithosObject.h"
38

    
39
@implementation ASIPithosObject
40
@synthesize subdir;
41
@synthesize name, hash, bytes, contentType, contentEncoding, contentDisposition, lastModified, 
42
version, versionTimestamp, modifiedBy, manifest, sharing, sharedBy, publicURI, metadata, data;
43

    
44
+ (id)object {
45
	ASIPithosObject *object = [[[self alloc] init] autorelease];
46
    object.subdir = NO;
47
	return object;
48
}
49

    
50
+ (id)subdirWithName:(NSString *)name {
51
	ASIPithosObject *object = [[[self alloc] init] autorelease];
52
    object.subdir = YES;
53
    object.name = name;
54
	return object;
55
}
56

    
57
- (NSString *)description {
58
    if (subdir)
59
        return [NSString stringWithFormat:@"subdir name: %@", name];
60
    return [NSString stringWithFormat:@"name: %@, hash: %@, bytes: %lu, contentType: %@, contentEncoding: %@, contentDisposition: %@, lastModified: %@, version: %@, versionTimestamp: %@, modifiedBy: %@, manifest: %@, sharing: %@, sharedBy: %@, publicURI: %@, metadata: %@", 
61
            name, hash, bytes, contentType, contentEncoding, contentDisposition, lastModified, version, versionTimestamp, modifiedBy, manifest, sharing, sharedBy, publicURI, metadata];
62
}
63

    
64
-(void) dealloc {
65
    [data release];
66
    [metadata release];
67
    [publicURI release];
68
    [sharedBy release];
69
    [sharing release];
70
    [manifest release];
71
    [modifiedBy release];
72
    [versionTimestamp release];
73
    [version release];
74
    [lastModified release];
75
    [contentDisposition release];
76
    [contentEncoding release];
77
    [contentType release];
78
    [hash release];
79
	[name release];
80
	[super dealloc];
81
}
82

    
83
@end