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 __SoObjects_SOGoObject_H__
23 #define __SoObjects_SOGoObject_H__
25 #import <Foundation/NSObject.h>
30 This is the abstract class used by all SOGo SoObjects. It contains the
31 ability to track a container as well as the key the object was invoked with.
33 In addition it provides some generic methods like user or group folder
37 #import <NGObjWeb/SoObject.h>
41 @class NSMutableString;
46 @class GCSFolderManager;
49 @class SOGoUserFolder;
50 @class SOGoGroupsFolder;
53 #define $(class) NSClassFromString(class)
55 @interface SOGoObject : NSObject
58 NSString *nameInContainer;
60 NSString *customOwner;
63 + (id) objectWithName: (NSString *)_name inContainer:(id)_container;
65 - (id) initWithName: (NSString *) _name inContainer:(id)_container;
69 - (NSString *) nameInContainer;
74 - (void) setOwner: (NSString *) newOwner;
75 - (NSString *) ownerInContext: (id) _ctx;
77 /* looking up shared objects */
79 - (SOGoUserFolder *) lookupUserFolder;
80 - (SOGoGroupsFolder *) lookupGroupsFolder;
86 - (NSArray *) fetchSubfolders; /* uses toManyRelationshipKeys */
90 - (NSException *)delete;
91 - (id)GETAction:(id)_ctx;
93 - (SOGoDAVSet *) davCurrentUserPrivilegeSet;
97 - (NSException *)matchesRequestConditionInContext:(id)_ctx;
101 - (NSArray *) aclUsers;
102 - (NSArray *) aclsForUser: (NSString *) uid;
103 - (void) setRoles: (NSArray *) roles
104 forUser: (NSString *) uid;
105 - (void) removeAclsForUsers: (NSArray *) users;
106 - (NSString *) defaultUserID;
107 - (BOOL) hasSupportForDefaultRoles;
111 - (void) appendAttributesToDescription:(NSMutableString *)_ms;
115 #endif /* __SoObjects_SOGoObject_H__ */