diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-18 08:39:11 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-18 08:39:11 -0700 |
commit | 022490456385e67c7fffaed624529113cd3d8778 (patch) | |
tree | 5c5f3486df0d5432c0a5cb1449f1663bbaf6c5a7 /src | |
parent | 69d1f3d805269597c945299f270d02a5bbaea429 (diff) | |
download | DotNetOpenAuth-022490456385e67c7fffaed624529113cd3d8778.zip DotNetOpenAuth-022490456385e67c7fffaed624529113cd3d8778.tar.gz DotNetOpenAuth-022490456385e67c7fffaed624529113cd3d8778.tar.bz2 |
Renamed WebServerAuthorizationServer to just AuthorizationServer.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/DotNetOpenAuth.csproj | 2 | ||||
-rw-r--r-- | src/DotNetOpenAuth/OAuth2/AuthorizationServer.cs (renamed from src/DotNetOpenAuth/OAuth2/WebServerAuthorizationServer.cs) | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/DotNetOpenAuth/DotNetOpenAuth.csproj b/src/DotNetOpenAuth/DotNetOpenAuth.csproj index 8ade97a..8f33c8d 100644 --- a/src/DotNetOpenAuth/DotNetOpenAuth.csproj +++ b/src/DotNetOpenAuth/DotNetOpenAuth.csproj @@ -392,7 +392,7 @@ http://opensource.org/licenses/ms-pl.html <Compile Include="OAuth2\ResourceServer.cs" /> <Compile Include="OAuth2\StandardAccessTokenAnalyzer.cs" /> <Compile Include="OAuth2\UserAgentClient.cs" /> - <Compile Include="OAuth2\WebServerAuthorizationServer.cs" /> + <Compile Include="OAuth2\AuthorizationServer.cs" /> <Compile Include="OAuth2\OAuthUtilities.cs" /> <Compile Include="OAuth\ChannelElements\ICombinedOpenIdProviderTokenManager.cs" /> <Compile Include="OAuth\ChannelElements\IConsumerDescription.cs" /> diff --git a/src/DotNetOpenAuth/OAuth2/WebServerAuthorizationServer.cs b/src/DotNetOpenAuth/OAuth2/AuthorizationServer.cs index 09ad193..ce4f6bb 100644 --- a/src/DotNetOpenAuth/OAuth2/WebServerAuthorizationServer.cs +++ b/src/DotNetOpenAuth/OAuth2/AuthorizationServer.cs @@ -1,5 +1,5 @@ //----------------------------------------------------------------------- -// <copyright file="WebServerAuthorizationServer.cs" company="Andrew Arnott"> +// <copyright file="AuthorizationServer.cs" company="Andrew Arnott"> // Copyright (c) Andrew Arnott. All rights reserved. // </copyright> //----------------------------------------------------------------------- @@ -18,12 +18,12 @@ namespace DotNetOpenAuth.OAuth2 { /// <summary> /// Authorization Server supporting the web server flow. /// </summary> - public class WebServerAuthorizationServer : AuthorizationServerBase { + public class AuthorizationServer : AuthorizationServerBase { /// <summary> - /// Initializes a new instance of the <see cref="WebServerAuthorizationServer"/> class. + /// Initializes a new instance of the <see cref="AuthorizationServer"/> class. /// </summary> /// <param name="authorizationServer">The authorization server.</param> - public WebServerAuthorizationServer(IAuthorizationServer authorizationServer) + public AuthorizationServer(IAuthorizationServer authorizationServer) : base(authorizationServer) { Contract.Requires<ArgumentNullException>(authorizationServer != null, "authorizationServer"); } |