Add license and copyright to all source files in corlib
[mono.git] / mcs / class / corlib / System.Security.Permissions / SiteIdentityPermission.cs
1 //
2 // System.Security.Permissions.SiteIdentityPermission.cs
3 //
4 // Author
5 //      Sebastien Pouliot  <spouliot@motus.com>
6 //
7 // Copyright (C) 2003 Motus Technologies. http://www.motus.com
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34 using System.Globalization;
35
36 namespace System.Security.Permissions {
37
38         [Serializable]
39         public sealed class SiteIdentityPermission : CodeAccessPermission, IBuiltInPermission {
40
41                 private string _site;
42
43                 // Constructors
44
45                 public SiteIdentityPermission (PermissionState state) 
46                 {
47                         if (state == PermissionState.Unrestricted)
48                                 throw new ArgumentException ("Unsupported PermissionState.Unrestricted for Identity Permission");
49                 }
50
51                 public SiteIdentityPermission (string site) 
52                 {
53                         _site = site;
54                 }
55
56                 // Properties
57
58                 public string Site {
59                         get { 
60                                 if (_site == null)
61                                         throw new NullReferenceException ("Site");
62                                 return _site; 
63                         }
64                         set { _site = value; }
65                 }
66
67                 // Methods
68
69                 public override IPermission Copy () 
70                 {
71                         return new SiteIdentityPermission (_site);
72                 }
73
74                 public override void FromXml (SecurityElement esd) 
75                 {
76                         if (esd == null)
77                                 throw new ArgumentNullException (
78                                         Locale.GetText ("The argument is null."));
79                         
80                         if (esd.Attribute ("class") != GetType ().AssemblyQualifiedName)
81                                 throw new ArgumentException (
82                                         Locale.GetText ("The argument is not valid"));
83
84                         if (esd.Attribute ("version") != "1")
85                                 throw new ArgumentException (
86                                         Locale.GetText ("The argument is not valid"));
87
88                         this.Site = esd.Attribute ("Site");
89                 }
90
91                 [MonoTODO]
92                 public override IPermission Intersect (IPermission target)
93                 {
94                         return null;
95                 }
96
97                 [MonoTODO]
98                 public override bool IsSubsetOf (IPermission target) 
99                 {
100                         return false;
101                 }
102
103                 public override SecurityElement ToXml ()
104                 {
105                         SecurityElement e = new SecurityElement ("IPermission");
106                         e.AddAttribute ("class", GetType ().AssemblyQualifiedName);
107                         e.AddAttribute ("version", "1");
108
109                         e.AddAttribute ("Site", _site);
110
111                         return e;
112                 }
113
114                 [MonoTODO]
115                 public override IPermission Union (IPermission target) 
116                 {
117                         return null;
118                 }
119
120                 // IBuiltInPermission
121                 int IBuiltInPermission.GetTokenIndex ()
122                 {
123                         return 10;
124                 }
125         }
126 }