Added StandardProviderApplicationStore and several OpenIdProvider unit tests.
[dotnetoauth.git] / src / DotNetOpenAuth / OpenId / Provider / IProviderApplicationStore.cs
blobc16f1f99ae232d6abe4079477421525a766bb51a
1 //-----------------------------------------------------------------------
2 // <copyright file="IProviderApplicationStore.cs" company="Andrew Arnott">
3 // Copyright (c) Andrew Arnott. All rights reserved.
4 // </copyright>
5 //-----------------------------------------------------------------------
7 namespace DotNetOpenAuth.OpenId.Provider {
8 using System;
9 using System.Collections.Generic;
10 using System.Linq;
11 using System.Text;
12 using DotNetOpenAuth.Messaging.Bindings;
14 /// <summary>
15 /// A hybrid of all the store interfaces that a Provider requires in order
16 /// to operate in "smart" mode.
17 /// </summary>
18 public interface IProviderApplicationStore : IAssociationStore<AssociationRelyingPartyType>, INonceStore {