]> err.no Git - scalable-opengroupware.org/blob - SoObjects/SOGo/SOGoPermissions.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1051 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SoObjects / SOGo / SOGoPermissions.m
1 /* SOGoPermissions.m - 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 #import "SOGoPermissions.h"
24
25 /* General */
26 NSString *SOGoRole_ObjectCreator = @"ObjectCreator";
27 NSString *SOGoRole_ObjectEraser = @"ObjectEraser";
28 NSString *SOGoRole_ObjectViewer = @"ObjectViewer";
29 NSString *SOGoRole_ObjectEditor = @"ObjectEditor";
30 NSString *SOGoRole_AuthorizedSubscriber = @"AuthorizedSubscriber";
31
32 NSString *SOGoRole_FreeBusy = @"FreeBusy"; /* for the "freebusy" special user
33                                             */
34 NSString *SOGoRole_FreeBusyLookup = @"FreeBusyLookup"; /* for users that have
35                                                           access to the
36                                                           freebusy information
37                                                           from a specific
38                                                           calendar */
39
40 /* Calendar */
41 NSString *SOGoCalendarRole_Organizer = @"Organizer";
42 NSString *SOGoCalendarRole_Participant = @"Participant";
43
44 NSString *SOGoCalendarRole_PublicViewer = @"PublicViewer";
45 NSString *SOGoCalendarRole_PublicDAndTViewer = @"PublicDAndTViewer";
46 NSString *SOGoCalendarRole_PublicModifier = @"PublicModifier";
47 NSString *SOGoCalendarRole_PublicResponder = @"PublicResponder";
48 NSString *SOGoCalendarRole_PrivateViewer = @"PrivateViewer";
49 NSString *SOGoCalendarRole_PrivateDAndTViewer = @"PrivateDAndTViewer";
50 NSString *SOGoCalendarRole_PrivateModifier = @"PrivateModifier";
51 NSString *SOGoCalendarRole_PrivateResponder = @"PrivateResponder";
52 NSString *SOGoCalendarRole_ConfidentialViewer = @"ConfidentialViewer";
53 NSString *SOGoCalendarRole_ConfidentialDAndTViewer = @"ConfidentialDAndTViewer";
54 NSString *SOGoCalendarRole_ConfidentialModifier = @"ConfidentialModifier";
55 NSString *SOGoCalendarRole_ConfidentialResponder = @"ConfidentialResponder";
56
57 NSString *SOGoCalendarRole_ComponentViewer = @"ComponentViewer";
58 NSString *SOGoCalendarRole_ComponentDAndTViewer = @"ComponentDAndTViewer";
59 NSString *SOGoCalendarRole_ComponentModifier = @"ComponentModifier";
60 NSString *SOGoCalendarRole_ComponentResponder = @"ComponentResponder";
61
62 /* permissions */
63 NSString *SOGoPerm_ReadAcls = @"ReadAcls"; /* the equivalent of "read-acl" in
64                                               the WebDAV acls spec, which is
65                                               currently missing from SOPE */
66 NSString *SOGoPerm_FreeBusyLookup = @"FreeBusyLookup";
67
68 NSString *SOGoCalendarPerm_ViewWholePublicRecords = @"ViewWholePublicRecords";
69 NSString *SOGoCalendarPerm_ViewDAndTOfPublicRecords = @"ViewDAndTOfPublicRecords";
70 NSString *SOGoCalendarPerm_ModifyPublicRecords = @"ModifyPublicRecords";
71 NSString *SOGoCalendarPerm_RespondToPublicRecords = @"RespondToPublicRecords";
72 NSString *SOGoCalendarPerm_ViewWholePrivateRecords = @"ViewWholePrivateRecords";
73 NSString *SOGoCalendarPerm_ViewDAndTOfPrivateRecords = @"ViewDAndTOfPrivateRecords";
74 NSString *SOGoCalendarPerm_ModifyPrivateRecords = @"ModifyPrivateRecords";
75 NSString *SOGoCalendarPerm_RespondToPrivateRecords = @"RespondToPrivateRecords";
76 NSString *SOGoCalendarPerm_ViewWholeConfidentialRecords = @"ViewWholeConfidentialRecords";
77 NSString *SOGoCalendarPerm_ViewDAndTOfConfidentialRecords = @"ViewDAndTOfConfidentialRecords";
78 NSString *SOGoCalendarPerm_ModifyConfidentialRecords = @"ModifyConfidentialRecords";
79 NSString *SOGoCalendarPerm_RespondToConfidentialRecords = @"RespondToConfidentialRecords";
80
81 NSString *SOGoCalendarPerm_ViewAllComponent = @"ViewAllComponent";
82 NSString *SOGoCalendarPerm_ViewDAndT = @"ViewDAndT";
83 NSString *SOGoCalendarPerm_ModifyComponent = @"ModifyComponent";
84 NSString *SOGoCalendarPerm_RespondToComponent = @"RespondToComponent";