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;
47 @class GCSFolderManager;
50 @class SOGoUserFolder;
51 @class SOGoGroupsFolder;
54 #define $(class) NSClassFromString(class)
56 @interface SOGoObject : NSObject
59 NSString *nameInContainer;
64 + (id) objectWithName: (NSString *)_name inContainer:(id)_container;
66 - (id) initWithName: (NSString *) _name inContainer:(id)_container;
70 - (NSString *) nameInContainer;
75 - (NSURL *) soURLToBaseContainerForUser: (NSString *) uid;
76 - (NSURL *) soURLToBaseContainerForCurrentUser;
80 - (void) setOwner: (NSString *) newOwner;
81 - (NSString *) ownerInContext: (id) _ctx;
83 /* looking up shared objects */
85 - (SOGoUserFolder *) lookupUserFolder;
86 - (SOGoGroupsFolder *) lookupGroupsFolder;
92 - (NSArray *) fetchSubfolders; /* uses toManyRelationshipKeys */
96 - (NSException *)delete;
97 - (id)GETAction:(id)_ctx;
99 - (SOGoDAVSet *) davCurrentUserPrivilegeSet;
103 - (NSException *)matchesRequestConditionInContext:(id)_ctx;
107 - (NSArray *) aclUsers;
108 - (NSArray *) aclsForUser: (NSString *) uid;
109 - (void) setRoles: (NSArray *) roles
110 forUser: (NSString *) uid;
111 - (void) removeAclsForUsers: (NSArray *) users;
112 - (NSString *) defaultUserID;
114 - (void) sendACLAdditionAdvisoryToUser: (NSString *) uid;
115 - (void) sendACLRemovalAdvisoryToUser: (NSString *) uid;
117 - (NSString *) httpURLForAdvisoryToUser: (NSString *) uid;
118 - (NSString *) resourceURLForAdvisoryToUser: (NSString *) uid;
122 - (void) appendAttributesToDescription:(NSMutableString *)_ms;
126 #endif /* __SoObjects_SOGoObject_H__ */