2 Copyright (C) 2004-2005 SKYRIX Software AG
4 This file is part of OpenGroupware.org.
6 OGo is free software; you can redistribute it and/or modify it under
7 the terms of the GNU Lesser General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
14 License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with OGo; see the file COPYING. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 #ifndef __SOGo_SOGoFolder_H__
23 #define __SOGo_SOGoFolder_H__
25 #import "SOGoObject.h"
29 @class NSMutableDictionary;
37 A common superclass for folders stored in GCS. Already deals with all GCS
38 folder specific things.
40 Important: folders should NOT retain the context! Otherwise you might get
44 @interface SOGoFolder : SOGoObject
46 NSMutableString *displayName;
49 NSMutableDictionary *aclCache;
52 + (id) folderWithSubscriptionReference: (NSString *) reference
53 inContainer: (id) aContainer;
57 - (void) setDisplayName: (NSString *) newDisplayName;
58 - (NSString *) displayName;
60 - (void) setOCSPath: (NSString *)_Path;
61 - (NSString *) ocsPath;
63 - (GCSFolder *) ocsFolderForPath: (NSString *)_path;
64 - (GCSFolder *) ocsFolder;
66 /* lower level fetches */
67 - (BOOL) nameExistsInFolder: (NSString *) objectName;
69 - (void) deleteEntriesWithIds: (NSArray *) ids;
71 - (NSArray *) fetchContentObjectNames;
72 - (NSDictionary *) fetchContentStringsAndNamesOfAllObjects;
76 - (NSString *) outlookFolderClass;
78 - (BOOL) folderIsMandatory;
79 - (NSString *) folderType;
82 - (NSException *) delete;
83 - (void) renameTo: (NSString *) newName;
85 - (NSArray *) davNamespaces;
87 /* acls as a container */
88 - (NSArray *) aclUsersForObjectAtPath: (NSArray *) objectPathArray;
89 - (NSArray *) aclsForUser: (NSString *) uid
90 forObjectAtPath: (NSArray *) objectPathArray;
91 - (void) setRoles: (NSArray *) roles
92 forUser: (NSString *) uid
93 forObjectAtPath: (NSArray *) objectPathArray;
94 - (void) removeAclsForUsers: (NSArray *) users
95 forObjectAtPath: (NSArray *) objectPathArray;
99 @interface SOGoFolder (GroupDAVExtensions)
101 - (NSString *) groupDavResourceType;
105 #endif /* __SOGo_SOGoFolder_H__ */