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