diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-25 15:47:41 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-25 15:47:41 -0700 |
commit | 8f05a9a391b381c05410c45e52d99a469e5ff61d (patch) | |
tree | 37320ee9d51659d19749ecb381fec2e8581f1702 | |
parent | a20f97a9f5cab3870ee04882ed83a7f7918ee969 (diff) | |
download | DotNetOpenAuth-8f05a9a391b381c05410c45e52d99a469e5ff61d.zip DotNetOpenAuth-8f05a9a391b381c05410c45e52d99a469e5ff61d.tar.gz DotNetOpenAuth-8f05a9a391b381c05410c45e52d99a469e5ff61d.tar.bz2 |
Renamed a couple of configuration classes.
-rw-r--r-- | src/DotNetOpenAuth/Configuration/OpenIdProviderElement.cs | 4 | ||||
-rw-r--r-- | src/DotNetOpenAuth/Configuration/OpenIdProviderSecuritySettingsElement.cs (renamed from src/DotNetOpenAuth/Configuration/ProviderSecuritySettingsElement.cs) | 8 | ||||
-rw-r--r-- | src/DotNetOpenAuth/Configuration/OpenIdRelyingPartyElement.cs | 4 | ||||
-rw-r--r-- | src/DotNetOpenAuth/Configuration/OpenIdRelyingPartySecuritySettingsElement.cs (renamed from src/DotNetOpenAuth/Configuration/RelyingPartySecuritySettingsElement.cs) | 8 | ||||
-rw-r--r-- | src/DotNetOpenAuth/DotNetOpenAuth.csproj | 4 |
5 files changed, 14 insertions, 14 deletions
diff --git a/src/DotNetOpenAuth/Configuration/OpenIdProviderElement.cs b/src/DotNetOpenAuth/Configuration/OpenIdProviderElement.cs index a68c0c4..d84766b 100644 --- a/src/DotNetOpenAuth/Configuration/OpenIdProviderElement.cs +++ b/src/DotNetOpenAuth/Configuration/OpenIdProviderElement.cs @@ -34,8 +34,8 @@ namespace DotNetOpenAuth.Configuration { /// Gets or sets the security settings. /// </summary> [ConfigurationProperty(SecuritySettingsConfigName)] - public ProviderSecuritySettingsElement SecuritySettings { - get { return (ProviderSecuritySettingsElement)this[SecuritySettingsConfigName] ?? new ProviderSecuritySettingsElement(); } + public OpenIdProviderSecuritySettingsElement SecuritySettings { + get { return (OpenIdProviderSecuritySettingsElement)this[SecuritySettingsConfigName] ?? new OpenIdProviderSecuritySettingsElement(); } set { this[SecuritySettingsConfigName] = value; } } diff --git a/src/DotNetOpenAuth/Configuration/ProviderSecuritySettingsElement.cs b/src/DotNetOpenAuth/Configuration/OpenIdProviderSecuritySettingsElement.cs index eb3c817..3c02a1b 100644 --- a/src/DotNetOpenAuth/Configuration/ProviderSecuritySettingsElement.cs +++ b/src/DotNetOpenAuth/Configuration/OpenIdProviderSecuritySettingsElement.cs @@ -1,5 +1,5 @@ //----------------------------------------------------------------------- -// <copyright file="ProviderSecuritySettingsElement.cs" company="Andrew Arnott"> +// <copyright file="OpenIdProviderSecuritySettingsElement.cs" company="Andrew Arnott"> // Copyright (c) Andrew Arnott. All rights reserved. // </copyright> //----------------------------------------------------------------------- @@ -14,7 +14,7 @@ namespace DotNetOpenAuth.Configuration { /// Represents the .config file element that allows for setting the security policies of the Provider. /// </summary> [ContractVerification(true)] - internal class ProviderSecuritySettingsElement : ConfigurationElement { + internal class OpenIdProviderSecuritySettingsElement : ConfigurationElement { /// <summary> /// Gets the name of the @protectDownlevelReplayAttacks attribute. /// </summary> @@ -36,9 +36,9 @@ namespace DotNetOpenAuth.Configuration { private const string AssociationsConfigName = "associations"; /// <summary> - /// Initializes a new instance of the <see cref="ProviderSecuritySettingsElement"/> class. + /// Initializes a new instance of the <see cref="OpenIdProviderSecuritySettingsElement"/> class. /// </summary> - public ProviderSecuritySettingsElement() { + public OpenIdProviderSecuritySettingsElement() { } /// <summary> diff --git a/src/DotNetOpenAuth/Configuration/OpenIdRelyingPartyElement.cs b/src/DotNetOpenAuth/Configuration/OpenIdRelyingPartyElement.cs index fd16125..e311969 100644 --- a/src/DotNetOpenAuth/Configuration/OpenIdRelyingPartyElement.cs +++ b/src/DotNetOpenAuth/Configuration/OpenIdRelyingPartyElement.cs @@ -34,8 +34,8 @@ namespace DotNetOpenAuth.Configuration { /// Gets or sets the security settings. /// </summary> [ConfigurationProperty(SecuritySettingsConfigName)] - public RelyingPartySecuritySettingsElement SecuritySettings { - get { return (RelyingPartySecuritySettingsElement)this[SecuritySettingsConfigName] ?? new RelyingPartySecuritySettingsElement(); } + public OpenIdRelyingPartySecuritySettingsElement SecuritySettings { + get { return (OpenIdRelyingPartySecuritySettingsElement)this[SecuritySettingsConfigName] ?? new OpenIdRelyingPartySecuritySettingsElement(); } set { this[SecuritySettingsConfigName] = value; } } diff --git a/src/DotNetOpenAuth/Configuration/RelyingPartySecuritySettingsElement.cs b/src/DotNetOpenAuth/Configuration/OpenIdRelyingPartySecuritySettingsElement.cs index ae29484..802ebe7 100644 --- a/src/DotNetOpenAuth/Configuration/RelyingPartySecuritySettingsElement.cs +++ b/src/DotNetOpenAuth/Configuration/OpenIdRelyingPartySecuritySettingsElement.cs @@ -1,5 +1,5 @@ //----------------------------------------------------------------------- -// <copyright file="RelyingPartySecuritySettingsElement.cs" company="Andrew Arnott"> +// <copyright file="OpenIdRelyingPartySecuritySettingsElement.cs" company="Andrew Arnott"> // Copyright (c) Andrew Arnott. All rights reserved. // </copyright> //----------------------------------------------------------------------- @@ -14,7 +14,7 @@ namespace DotNetOpenAuth.Configuration { /// <summary> /// Represents the .config file element that allows for setting the security policies of the Relying Party. /// </summary> - internal class RelyingPartySecuritySettingsElement : ConfigurationElement { + internal class OpenIdRelyingPartySecuritySettingsElement : ConfigurationElement { /// <summary> /// Gets the name of the @minimumRequiredOpenIdVersion attribute. /// </summary> @@ -41,9 +41,9 @@ namespace DotNetOpenAuth.Configuration { private const string PrivateSecretMaximumAgeConfigName = "privateSecretMaximumAge"; /// <summary> - /// Initializes a new instance of the <see cref="RelyingPartySecuritySettingsElement"/> class. + /// Initializes a new instance of the <see cref="OpenIdRelyingPartySecuritySettingsElement"/> class. /// </summary> - public RelyingPartySecuritySettingsElement() { + public OpenIdRelyingPartySecuritySettingsElement() { } /// <summary> diff --git a/src/DotNetOpenAuth/DotNetOpenAuth.csproj b/src/DotNetOpenAuth/DotNetOpenAuth.csproj index 926925b..d1d73e0 100644 --- a/src/DotNetOpenAuth/DotNetOpenAuth.csproj +++ b/src/DotNetOpenAuth/DotNetOpenAuth.csproj @@ -178,9 +178,9 @@ <Compile Include="Configuration\MessagingElement.cs" /> <Compile Include="Configuration\OpenIdElement.cs" /> <Compile Include="Configuration\OpenIdProviderElement.cs" /> - <Compile Include="Configuration\ProviderSecuritySettingsElement.cs" /> + <Compile Include="Configuration\OpenIdProviderSecuritySettingsElement.cs" /> <Compile Include="Configuration\OpenIdRelyingPartyElement.cs" /> - <Compile Include="Configuration\RelyingPartySecuritySettingsElement.cs" /> + <Compile Include="Configuration\OpenIdRelyingPartySecuritySettingsElement.cs" /> <Compile Include="Configuration\TypeConfigurationElement.cs" /> <Compile Include="Configuration\UntrustedWebRequestElement.cs" /> <Compile Include="Configuration\HostNameOrRegexCollection.cs" /> |