2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / corlib / System.Security.AccessControl / CommonSecurityDescriptor.cs
blob636814a4a93ec51f15ad7aa37e2a139410826e40
1 //
2 // System.Security.AccessControl.CommonSecurityDescriptor implementation
3 //
4 // Author:
5 // Dick Porter <dick@ximian.com>
6 //
7 // Copyright (C) 2006 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 using System.Security.Principal;
31 namespace System.Security.AccessControl {
32 public sealed class CommonSecurityDescriptor : GenericSecurityDescriptor
34 bool isContainer;
35 bool isDS;
36 ControlFlags flags;
37 SecurityIdentifier owner;
38 SecurityIdentifier group;
39 SystemAcl systemAcl;
40 DiscretionaryAcl discretionaryAcl;
42 public CommonSecurityDescriptor (bool isContainer, bool isDS, RawSecurityDescriptor rawSecurityDescriptor)
44 throw new NotImplementedException ();
47 public CommonSecurityDescriptor (bool isContainer, bool isDS, string sddlForm)
49 throw new NotImplementedException ();
52 public CommonSecurityDescriptor (bool isContainer, bool isDS, byte[] binaryForm, int offset)
54 throw new NotImplementedException ();
57 public CommonSecurityDescriptor (bool isContainer, bool isDS,
58 ControlFlags flags,
59 SecurityIdentifier owner,
60 SecurityIdentifier group,
61 SystemAcl systemAcl,
62 DiscretionaryAcl discretionaryAcl)
64 this.isContainer = isContainer;
65 this.isDS = isDS;
66 this.flags = flags;
67 this.owner = owner;
68 this.group = group;
69 this.systemAcl = systemAcl;
70 this.discretionaryAcl = discretionaryAcl;
72 throw new NotImplementedException ();
75 public override ControlFlags ControlFlags
77 get {
78 return(flags);
82 public DiscretionaryAcl DiscretionaryAcl
84 get {
85 return(discretionaryAcl);
87 set {
88 if (value == null) {
89 /* FIXME: add a "full access" ACE */
92 discretionaryAcl = value;
96 public override SecurityIdentifier Group
98 get {
99 return(group);
101 set {
102 group = value;
106 public bool IsContainer
108 get {
109 return(isContainer);
113 public bool IsDiscretionaryAclCanonical
115 get {
116 throw new NotImplementedException ();
120 public bool IsDS
122 get {
123 return(isDS);
127 public bool IsSystemAclCanonical
129 get {
130 throw new NotImplementedException ();
134 public override SecurityIdentifier Owner
136 get {
137 return(owner);
139 set {
140 owner = value;
144 public SystemAcl SystemAcl
146 get {
147 return(systemAcl);
149 set {
150 systemAcl = value;
154 public void PurgeAccessControl (SecurityIdentifier sid)
156 throw new NotImplementedException ();
159 public void PurgeAudit (SecurityIdentifier sid)
161 throw new NotImplementedException ();
164 public void SetDiscretionaryAclProtection (bool isProtected,
165 bool preserveInheritance)
167 throw new NotImplementedException ();
170 public void SetSystemAclProtection (bool isProtected,
171 bool preserveInheritance)
173 throw new NotImplementedException ();