summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OpenId/Configuration/OpenIdRelyingPartyElement.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-03-28 16:31:42 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-03-28 16:33:01 -0700
commit3f01e9b105a551fa7b7f7e54ddabd797328e0a4b (patch)
tree941889ba2ba02bc356582373849563eea2782225 /src/DotNetOpenAuth.OpenId/Configuration/OpenIdRelyingPartyElement.cs
parent6877b41cb57087bc6ecefcfc5a0f9534a33b2ba8 (diff)
downloadDotNetOpenAuth-3f01e9b105a551fa7b7f7e54ddabd797328e0a4b.zip
DotNetOpenAuth-3f01e9b105a551fa7b7f7e54ddabd797328e0a4b.tar.gz
DotNetOpenAuth-3f01e9b105a551fa7b7f7e54ddabd797328e0a4b.tar.bz2
Consolidates two OpenID memory app stores
The StandardRelyingPartyApplicationStore and StandardProviderApplicationStore were equivalent, and thus redundant. There was also nothing OpenID specific about them. So this consolidates and renames these types to better reflect their general purpose.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId/Configuration/OpenIdRelyingPartyElement.cs')
-rw-r--r--src/DotNetOpenAuth.OpenId/Configuration/OpenIdRelyingPartyElement.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.OpenId/Configuration/OpenIdRelyingPartyElement.cs b/src/DotNetOpenAuth.OpenId/Configuration/OpenIdRelyingPartyElement.cs
index 681ba38..4cfafda 100644
--- a/src/DotNetOpenAuth.OpenId/Configuration/OpenIdRelyingPartyElement.cs
+++ b/src/DotNetOpenAuth.OpenId/Configuration/OpenIdRelyingPartyElement.cs
@@ -7,6 +7,8 @@
namespace DotNetOpenAuth.Configuration {
using System;
using System.Configuration;
+
+ using DotNetOpenAuth.Messaging.Bindings;
using DotNetOpenAuth.OpenId;
using DotNetOpenAuth.OpenId.RelyingParty;
@@ -96,8 +98,8 @@ namespace DotNetOpenAuth.Configuration {
/// Gets or sets the type to use for storing application state.
/// </summary>
[ConfigurationProperty(StoreConfigName)]
- public TypeConfigurationElement<IOpenIdApplicationStore> ApplicationStore {
- get { return (TypeConfigurationElement<IOpenIdApplicationStore>)this[StoreConfigName] ?? new TypeConfigurationElement<IOpenIdApplicationStore>(); }
+ public TypeConfigurationElement<ICryptoKeyAndNonceStore> ApplicationStore {
+ get { return (TypeConfigurationElement<ICryptoKeyAndNonceStore>)this[StoreConfigName] ?? new TypeConfigurationElement<ICryptoKeyAndNonceStore>(); }
set { this[StoreConfigName] = value; }
}