2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / Mono.Data.SybaseClient / Mono.Data.SybaseClient / SybasePermission.cs
1 //
2 // Mono.Data.SybaseClient.SybasePermission.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Data;
33 using System.Data.Common;
34 using System.Security;
35 using System.Security.Permissions;
36
37 namespace Mono.Data.SybaseClient {
38         public sealed class SybasePermission : DBDataPermission 
39         {
40 #if NET_2_0
41                 [Obsolete ("Use SybasePermission(PermissionState.None)", true)]
42 #endif
43                 [MonoTODO]
44                 public SybasePermission () 
45 #if NET_2_0
46                         : base (PermissionState.None)
47 #endif
48                 {
49                         // FIXME: do constructor
50                 }
51
52                 [MonoTODO]
53                 public SybasePermission (PermissionState state) 
54                         : base (state)
55                 {
56                         // FIXME: do constructor
57                 }
58
59 #if NET_2_0
60                 [Obsolete ("Use SybasePermission(PermissionState.None)", true)]
61 #endif
62                 [MonoTODO]
63                 public SybasePermission (PermissionState state, bool allowBlankPassword) 
64 #if NET_2_0
65                         : base (PermissionState.None)
66 #endif
67                 { 
68                         throw new NotImplementedException ();
69                 }
70
71                 [MonoTODO]
72                 public override IPermission Copy () 
73                 {
74                         throw new NotImplementedException ();
75                 }
76
77                 [MonoTODO]
78                 public override void FromXml (SecurityElement securityElement) 
79                 {
80                         throw new NotImplementedException ();
81                 }
82
83                 [MonoTODO]
84                 public override IPermission Intersect (IPermission target)  
85                 {
86                         throw new NotImplementedException ();
87                 }
88
89                 [MonoTODO]
90                 public override bool IsSubsetOf (IPermission target) 
91                 {
92                         throw new NotImplementedException ();
93                 }
94
95                 [MonoTODO]
96                 public override string ToString () 
97                 {
98                         throw new NotImplementedException ();
99                 }
100
101                 [MonoTODO]
102                 public override SecurityElement ToXml () 
103                 {
104                         throw new NotImplementedException ();
105                 }
106
107                 [MonoTODO]
108                 public override IPermission Union (IPermission target) 
109                 {
110                         throw new NotImplementedException ();
111                 }
112         }
113 }