New test.
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Configuration / SoapExtensionTypeElement.cs
1 //
2 // System.Web.Services.Configuration.SoapExtensionTypeElement
3 //
4 // Authors:
5 //      Chris Toshok (toshok@ximian.com)
6 //
7 // (C) 2006 Novell, Inc (http://www.novell.com)
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.Configuration;
33 using System.ComponentModel;
34
35 #if NET_2_0
36
37 namespace System.Web.Services.Configuration {
38
39         public sealed class SoapExtensionTypeElement : ConfigurationElement
40         {
41                 static ConfigurationProperty groupProp;
42                 static ConfigurationProperty priorityProp;
43                 static ConfigurationProperty typeProp;
44                 static ConfigurationPropertyCollection properties;
45
46                 static SoapExtensionTypeElement ()
47                 {
48                         groupProp = new ConfigurationProperty ("group", typeof (PriorityGroup), PriorityGroup.Low, ConfigurationPropertyOptions.IsKey);
49                         priorityProp = new ConfigurationProperty ("priority", typeof (int), 0,
50                                                                   new Int32Converter(), new IntegerValidator (0, Int32.MaxValue),
51                                                                   ConfigurationPropertyOptions.IsKey);
52                         typeProp = new ConfigurationProperty ("type", typeof (Type), null,
53                                                               null, null, ConfigurationPropertyOptions.IsKey);
54                         properties = new ConfigurationPropertyCollection ();
55
56                         properties.Add (groupProp);
57                         properties.Add (priorityProp);
58                         properties.Add (typeProp);
59
60                 }
61
62                 public SoapExtensionTypeElement (Type type, int priority, PriorityGroup group)
63                 {
64                         this.Type = type;
65                         this.Priority = priority;
66                         this.Group = group;
67                 }
68
69                 [MonoTODO]
70                 public SoapExtensionTypeElement (string type, int priority, PriorityGroup group)
71                         : this (Type.GetType (type), priority, group)
72                 {
73                 }
74
75                 public SoapExtensionTypeElement ()
76                 {
77                 }
78    
79                 [ConfigurationProperty ("group", DefaultValue = "Low", Options = ConfigurationPropertyOptions.IsKey)]
80                 public PriorityGroup Group {
81                         get { return (PriorityGroup) base [groupProp];}
82                         set { base[groupProp] = value; }
83                 }
84
85                 [IntegerValidator]
86                 [ConfigurationProperty ("priority", DefaultValue = "0", Options = ConfigurationPropertyOptions.IsKey)]
87                 public int Priority {
88                         get { return (int) base [priorityProp];}
89                         set { base[priorityProp] = value; }
90                 }
91
92                 [TypeConverter]
93                 [ConfigurationProperty ("type", Options = ConfigurationPropertyOptions.IsKey)]
94                 public Type Type {
95                         get { return (Type) base [typeProp];}
96                         set { base[typeProp] = value; }
97                 }
98
99                 internal object GetKey ()
100                 {
101                         return String.Format ("{0}-{0}-{0}", Type, Priority, Group);
102                 }
103
104                 protected override ConfigurationPropertyCollection Properties {
105                         get { return properties; }
106                 }
107
108         }
109
110 }
111
112 #endif
113