]> err.no Git - scalable-opengroupware.org/blob - UI/SOGoUI/SOGoACLAdvisory.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1287 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / SOGoUI / SOGoACLAdvisory.h
1 /* SOGoACLAdvisory.h - this file is part of SOGo
2  *
3  * Copyright (C) 2007 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 SOGOACLADVISORY_H
24 #define SOGOACLADVISORY_H
25
26 #import "UIxComponent.h"
27
28 @interface SOGoACLAdvisory : UIxComponent
29 {
30   SOGoObject *aclObject;
31   NSString *recipientUID;
32
33   BOOL isSubject;
34   BOOL isBody;
35 }
36
37 - (void) setACLObject: (SOGoObject *) newACLObject;
38 - (void) setRecipientUID: (NSString *) newRecipientUID;
39 - (void) send;
40
41 - (BOOL) isSubject;
42 - (BOOL) isBody;
43
44 - (NSString *) subject;
45 - (NSString *) body;
46 - (NSString *) aclMethod;
47
48 @end
49
50 @interface SOGoACLAdditionAdvisory : SOGoACLAdvisory
51
52 - (NSString *) aclMethod;
53
54 @end
55
56 @interface SOGoACLRemovalAdvisory : SOGoACLAdvisory
57
58 - (NSString *) aclMethod;
59
60 @end
61
62 @interface SOGoACLEnglishAdditionAdvisory : SOGoACLAdditionAdvisory
63 @end
64
65 @interface SOGoACLFrenchAdditionAdvisory : SOGoACLAdditionAdvisory
66 @end
67
68 @interface SOGoACLGermanAdditionAdvisory : SOGoACLAdditionAdvisory
69 @end
70
71 @interface SOGoACLEnglishModificationAdvisory : SOGoACLAdditionAdvisory
72 @end
73
74 @interface SOGoACLFrenchModificationAdvisory : SOGoACLAdditionAdvisory
75 @end
76
77 @interface SOGoACLGermanModificationAdvisory : SOGoACLAdditionAdvisory
78 @end
79
80 @interface SOGoACLEnglishRemovalAdvisory : SOGoACLRemovalAdvisory
81 @end
82
83 @interface SOGoACLFrenchRemovalAdvisory : SOGoACLRemovalAdvisory
84 @end
85
86 @interface SOGoACLGermanRemovalAdvisory : SOGoACLRemovalAdvisory
87 @end
88
89 #endif /* SOGOACLADVISORY_H */