2009-10-02 Astushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Configuration / CertificateReferenceElement.cs
1 //
2 // CertificateReferenceElement.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@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.
27 //
28
29 using System;
30 using System.Collections;
31 using System.Collections.Generic;
32 using System.Collections.ObjectModel;
33 using System.ComponentModel;
34 using System.Configuration;
35 using System.Net;
36 using System.Net.Security;
37 using System.Reflection;
38 using System.Security.Cryptography.X509Certificates;
39 using System.Security.Principal;
40 using System.IdentityModel.Claims;
41 using System.IdentityModel.Policy;
42 using System.IdentityModel.Tokens;
43 using System.ServiceModel;
44 using System.ServiceModel.Channels;
45 using System.ServiceModel.Description;
46 using System.ServiceModel.Diagnostics;
47 using System.ServiceModel.Dispatcher;
48 using System.ServiceModel.MsmqIntegration;
49 using System.ServiceModel.PeerResolvers;
50 using System.ServiceModel.Security;
51 using System.Runtime.Serialization;
52 using System.Text;
53 using System.Xml;
54
55 namespace System.ServiceModel.Configuration
56 {
57         [MonoTODO]
58         public sealed partial class CertificateReferenceElement
59                  : ConfigurationElement
60         {
61                 // Static Fields
62                 static ConfigurationPropertyCollection properties;
63                 static ConfigurationProperty find_value;
64                 static ConfigurationProperty is_chain_included;
65                 static ConfigurationProperty store_location;
66                 static ConfigurationProperty store_name;
67                 static ConfigurationProperty x509_find_type;
68
69                 static CertificateReferenceElement ()
70                 {
71                         properties = new ConfigurationPropertyCollection ();
72                         find_value = new ConfigurationProperty ("findValue",
73                                 typeof (string), "", new StringConverter (), null,
74                                 ConfigurationPropertyOptions.None);
75
76                         is_chain_included = new ConfigurationProperty ("isChainIncluded",
77                                 typeof (bool), "false", new BooleanConverter (), null,
78                                 ConfigurationPropertyOptions.None);
79
80                         store_location = new ConfigurationProperty ("storeLocation",
81                                 typeof (StoreLocation), "LocalMachine", null/* FIXME: get converter for StoreLocation*/, null,
82                                 ConfigurationPropertyOptions.None);
83
84                         store_name = new ConfigurationProperty ("storeName",
85                                 typeof (StoreName), "My", null/* FIXME: get converter for StoreName*/, null,
86                                 ConfigurationPropertyOptions.None);
87
88                         x509_find_type = new ConfigurationProperty ("x509FindType",
89                                 typeof (X509FindType), "FindBySubjectDistinguishedName", null/* FIXME: get converter for X509FindType*/, null,
90                                 ConfigurationPropertyOptions.None);
91
92                         properties.Add (find_value);
93                         properties.Add (is_chain_included);
94                         properties.Add (store_location);
95                         properties.Add (store_name);
96                         properties.Add (x509_find_type);
97                 }
98
99                 public CertificateReferenceElement ()
100                 {
101                 }
102
103
104                 // Properties
105
106                 [ConfigurationProperty ("findValue",
107                          DefaultValue = "",
108                          Options = ConfigurationPropertyOptions.None)]
109                 [StringValidator ( MinLength = 0,
110                         MaxLength = int.MaxValue,
111                          InvalidCharacters = null)]
112                 public string FindValue {
113                         get { return (string) base [find_value]; }
114                         set { base [find_value] = value; }
115                 }
116
117                 [ConfigurationProperty ("isChainIncluded",
118                         DefaultValue = false,
119                          Options = ConfigurationPropertyOptions.None)]
120                 public bool IsChainIncluded {
121                         get { return (bool) base [is_chain_included]; }
122                         set { base [is_chain_included] = value; }
123                 }
124
125                 protected override ConfigurationPropertyCollection Properties {
126                         get { return properties; }
127                 }
128
129                 [ConfigurationProperty ("storeLocation",
130                          DefaultValue = "LocalMachine",
131                          Options = ConfigurationPropertyOptions.None)]
132                 public StoreLocation StoreLocation {
133                         get { return (StoreLocation) base [store_location]; }
134                         set { base [store_location] = value; }
135                 }
136
137                 [ConfigurationProperty ("storeName",
138                          DefaultValue = "My",
139                          Options = ConfigurationPropertyOptions.None)]
140                 public StoreName StoreName {
141                         get { return (StoreName) base [store_name]; }
142                         set { base [store_name] = value; }
143                 }
144
145                 [ConfigurationProperty ("x509FindType",
146                          DefaultValue = "FindBySubjectDistinguishedName",
147                          Options = ConfigurationPropertyOptions.None)]
148                 public X509FindType X509FindType {
149                         get { return (X509FindType) base [x509_find_type]; }
150                         set { base [x509_find_type] = value; }
151                 }
152
153
154         }
155
156 }