diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-12 18:37:40 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-12 18:37:40 -0800 |
commit | fb504a4573992f0ef7742f5c34e4e85a945b710c (patch) | |
tree | fb769c13b917a3d0bd32db0c22e79bb8d5d459c6 /src/DotNetOpenAuth.OAuth2/OAuth2/IAuthorizationServer.cs | |
parent | 7bf63044b1a48dc6f1df95c63431e8130940595d (diff) | |
download | DotNetOpenAuth-fb504a4573992f0ef7742f5c34e4e85a945b710c.zip DotNetOpenAuth-fb504a4573992f0ef7742f5c34e4e85a945b710c.tar.gz DotNetOpenAuth-fb504a4573992f0ef7742f5c34e4e85a945b710c.tar.bz2 |
Renamed IConsumerDescription to IClientDescription.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2/OAuth2/IAuthorizationServer.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2/OAuth2/IAuthorizationServer.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.OAuth2/OAuth2/IAuthorizationServer.cs b/src/DotNetOpenAuth.OAuth2/OAuth2/IAuthorizationServer.cs index 23c4a75..9c2888f 100644 --- a/src/DotNetOpenAuth.OAuth2/OAuth2/IAuthorizationServer.cs +++ b/src/DotNetOpenAuth.OAuth2/OAuth2/IAuthorizationServer.cs @@ -88,7 +88,7 @@ namespace DotNetOpenAuth.OAuth2 { /// <param name="clientIdentifier">The client identifier.</param> /// <returns>The client registration. Never null.</returns> /// <exception cref="ArgumentException">Thrown when no client with the given identifier is registered with this authorization server.</exception> - IConsumerDescription GetClient(string clientIdentifier); + IClientDescription GetClient(string clientIdentifier); /// <summary> /// Determines whether a described authorization is (still) valid. @@ -202,9 +202,9 @@ namespace DotNetOpenAuth.OAuth2 { /// <param name="clientIdentifier">The client identifier.</param> /// <returns>The client registration. Never null.</returns> /// <exception cref="ArgumentException">Thrown when no client with the given identifier is registered with this authorization server.</exception> - IConsumerDescription IAuthorizationServer.GetClient(string clientIdentifier) { + IClientDescription IAuthorizationServer.GetClient(string clientIdentifier) { Requires.NotNullOrEmpty(clientIdentifier, "clientIdentifier"); - Contract.Ensures(Contract.Result<IConsumerDescription>() != null); + Contract.Ensures(Contract.Result<IClientDescription>() != null); throw new NotImplementedException(); } |