]> err.no Git - scalable-opengroupware.org/blob - SoObjects/SOGo/SOGoPermissions.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1086 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SoObjects / SOGo / SOGoPermissions.h
1 /* SOGoPermissions.h - this file is part of SOGo
2  *
3  * Copyright (C) 2006 Inverse groupe conseil
4  *
5  * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
6  *
7  * This file is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This file is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef SOGOPERMISSIONS_H
24 #define SOGOPERMISSIONS_H
25
26 #import <Foundation/NSString.h>
27
28 #import <NGObjWeb/SoPermissions.h>
29
30 extern NSString *SOGoRole_ObjectCreator;
31 extern NSString *SOGoRole_ObjectEraser;
32 extern NSString *SOGoRole_ObjectReader;
33 extern NSString *SOGoRole_ObjectViewer;
34 extern NSString *SOGoRole_ObjectEditor;
35
36 extern NSString *SOGoRole_FolderCreator;
37 extern NSString *SOGoRole_FolderEraser;
38 extern NSString *SOGoRole_FolderViewer;
39
40 extern NSString *SOGoRole_AuthorizedSubscriber;
41 extern NSString *SOGoRole_None;
42 extern NSString *SOGoRole_FreeBusy;
43 extern NSString *SOGoRole_FreeBusyLookup;
44
45 extern NSString *SOGoMailRole_SeenKeeper;
46 extern NSString *SOGoMailRole_Writer;
47 extern NSString *SOGoMailRole_Poster;
48 extern NSString *SOGoMailRole_Expunger;
49 extern NSString *SOGoMailRole_Creator;
50 extern NSString *SOGoMailRole_Administrator;
51
52 extern NSString *SOGoCalendarRole_Organizer;
53 extern NSString *SOGoCalendarRole_Participant;
54
55 extern NSString *SOGoCalendarRole_PublicViewer;
56 extern NSString *SOGoCalendarRole_PublicDAndTViewer;
57 extern NSString *SOGoCalendarRole_PublicModifier;
58 extern NSString *SOGoCalendarRole_PublicResponder;
59 extern NSString *SOGoCalendarRole_PrivateViewer;
60 extern NSString *SOGoCalendarRole_PrivateDAndTViewer;
61 extern NSString *SOGoCalendarRole_PrivateModifier;
62 extern NSString *SOGoCalendarRole_PrivateResponder;
63 extern NSString *SOGoCalendarRole_ConfidentialViewer;
64 extern NSString *SOGoCalendarRole_ConfidentialDAndTViewer;
65 extern NSString *SOGoCalendarRole_ConfidentialModifier;
66 extern NSString *SOGoCalendarRole_ConfidentialResponder;
67
68 extern NSString *SOGoCalendarRole_ComponentViewer;
69 extern NSString *SOGoCalendarRole_ComponentDAndTViewer;
70 extern NSString *SOGoCalendarRole_ComponentModifier;
71 extern NSString *SOGoCalendarRole_ComponentResponder;
72
73 extern NSString *SOGoPerm_AccessObject;
74 extern NSString *SOGoPerm_ReadAcls;
75 extern NSString *SOGoPerm_FreeBusyLookup;
76
77 extern NSString *SOGoCalendarPerm_ViewWholePublicRecords;
78 extern NSString *SOGoCalendarPerm_ViewDAndTOfPublicRecords;
79 extern NSString *SOGoCalendarPerm_ModifyPublicRecords;
80 extern NSString *SOGoCalendarPerm_RespondToPublicRecords;
81 extern NSString *SOGoCalendarPerm_ViewWholePrivateRecords;
82 extern NSString *SOGoCalendarPerm_ViewDAndTOfPrivateRecords;
83 extern NSString *SOGoCalendarPerm_ModifyPrivateRecords;
84 extern NSString *SOGoCalendarPerm_RespondToPrivateRecords;
85 extern NSString *SOGoCalendarPerm_ViewWholeConfidentialRecords;
86 extern NSString *SOGoCalendarPerm_ViewDAndTOfConfidentialRecords;
87 extern NSString *SOGoCalendarPerm_ModifyConfidentialRecords;
88 extern NSString *SOGoCalendarPerm_RespondToConfidentialRecords;
89
90 extern NSString *SOGoCalendarPerm_ViewAllComponent;
91 extern NSString *SOGoCalendarPerm_ViewDAndT;
92 extern NSString *SOGoCalendarPerm_ModifyComponent;
93 extern NSString *SOGoCalendarPerm_RespondToComponent;
94
95 #endif /* SOGOPERMISSIONS_H */