summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-06-06 18:01:01 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-06-06 18:01:01 -0700
commit8ed398b9151c8fc140379756bd3bd546a46daf05 (patch)
tree18a7801cf5801da10123176384bbdc8d45ccccde
parenteb81c74d8c7c8cc155a56eb7d5b36c5076f88b1f (diff)
downloadDotNetOpenAuth-8ed398b9151c8fc140379756bd3bd546a46daf05.zip
DotNetOpenAuth-8ed398b9151c8fc140379756bd3bd546a46daf05.tar.gz
DotNetOpenAuth-8ed398b9151c8fc140379756bd3bd546a46daf05.tar.bz2
Renamed WebApp facade classes to WebServer to match messages and flow name.
-rw-r--r--samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs2
-rw-r--r--samples/OAuthConsumer/SampleWcf2.aspx.cs4
-rw-r--r--samples/OAuthServiceProvider/Code/Global.cs2
-rw-r--r--src/DotNetOpenAuth/DotNetOpenAuth.csproj6
-rw-r--r--src/DotNetOpenAuth/OAuthWrap/ChannelElements/OAuthWrapAuthorizationServerChannel.cs2
-rw-r--r--src/DotNetOpenAuth/OAuthWrap/ChannelElements/WebServerVerificationCodeBindingElement.cs (renamed from src/DotNetOpenAuth/OAuthWrap/ChannelElements/WebAppVerificationCodeBindingElement.cs)6
-rw-r--r--src/DotNetOpenAuth/OAuthWrap/WebServerAuthorizationServer.cs (renamed from src/DotNetOpenAuth/OAuthWrap/WebAppAuthorizationServer.cs)6
-rw-r--r--src/DotNetOpenAuth/OAuthWrap/WebServerClient.cs (renamed from src/DotNetOpenAuth/OAuthWrap/WebAppClient.cs)6
8 files changed, 17 insertions, 17 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs b/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs
index b7df5dd..2f3840e 100644
--- a/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs
+++ b/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs
@@ -13,7 +13,7 @@ namespace DotNetOpenAuth.ApplicationBlock {
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OAuthWrap;
- public class FacebookClient : WebAppClient {
+ public class FacebookClient : WebServerClient {
private static readonly AuthorizationServerDescription FacebookDescription = new AuthorizationServerDescription {
TokenEndpoint = new Uri("https://graph.facebook.com/oauth/access_token"),
AuthorizationEndpoint = new Uri("https://graph.facebook.com/oauth/authorize"),
diff --git a/samples/OAuthConsumer/SampleWcf2.aspx.cs b/samples/OAuthConsumer/SampleWcf2.aspx.cs
index 244d542..b8eda9e 100644
--- a/samples/OAuthConsumer/SampleWcf2.aspx.cs
+++ b/samples/OAuthConsumer/SampleWcf2.aspx.cs
@@ -94,12 +94,12 @@
}
}
- private static WebAppClient CreateClient() {
+ private static WebServerClient CreateClient() {
var authServerDescription = new AuthorizationServerDescription {
TokenEndpoint = new Uri("http://localhost:65169/OAuth2.ashx/token"),
AuthorizationEndpoint = new Uri("http://localhost:65169/OAuth2.ashx/auth"),
};
- var client = new WebAppClient(authServerDescription) {
+ var client = new WebServerClient(authServerDescription) {
ClientIdentifier = "sampleconsumer",
ClientSecret = "samplesecret",
TokenManager = TokenManager,
diff --git a/samples/OAuthServiceProvider/Code/Global.cs b/samples/OAuthServiceProvider/Code/Global.cs
index 9f345bf..a43cf57 100644
--- a/samples/OAuthServiceProvider/Code/Global.cs
+++ b/samples/OAuthServiceProvider/Code/Global.cs
@@ -58,7 +58,7 @@
set { HttpContext.Current.Session["authrequest"] = value; }
}
- public static WebAppAuthorizationServer AuthorizationServer = new WebAppAuthorizationServer(new OAuth2AuthorizationServer());
+ public static WebServerAuthorizationServer AuthorizationServer = new WebServerAuthorizationServer(new OAuth2AuthorizationServer());
private static DataClassesDataContext dataContextSimple {
get {
diff --git a/src/DotNetOpenAuth/DotNetOpenAuth.csproj b/src/DotNetOpenAuth/DotNetOpenAuth.csproj
index ba776b6..543a725 100644
--- a/src/DotNetOpenAuth/DotNetOpenAuth.csproj
+++ b/src/DotNetOpenAuth/DotNetOpenAuth.csproj
@@ -322,7 +322,7 @@ http://opensource.org/licenses/ms-pl.html
<Compile Include="OAuthWrap\ChannelElements\DataBag.cs" />
<Compile Include="OAuthWrap\ChannelElements\TimestampEncoder.cs" />
<Compile Include="OAuthWrap\ChannelElements\VerificationCode.cs" />
- <Compile Include="OAuthWrap\ChannelElements\WebAppVerificationCodeBindingElement.cs" />
+ <Compile Include="OAuthWrap\ChannelElements\WebServerVerificationCodeBindingElement.cs" />
<Compile Include="OAuthWrap\ChannelElements\AuthServerAllFlowsBindingElement.cs" />
<Compile Include="OAuthWrap\IAccessTokenAnalyzer.cs" />
<Compile Include="OAuthWrap\IAuthorizationServer.cs" />
@@ -352,7 +352,7 @@ http://opensource.org/licenses/ms-pl.html
<Compile Include="OAuthWrap\ResourceServer.cs" />
<Compile Include="OAuthWrap\StandardAccessTokenAnalyzer.cs" />
<Compile Include="OAuthWrap\UserAgentClient.cs" />
- <Compile Include="OAuthWrap\WebAppAuthorizationServer.cs" />
+ <Compile Include="OAuthWrap\WebServerAuthorizationServer.cs" />
<Compile Include="OAuthWrap\WrapUtilities.cs" />
<Compile Include="OAuth\ChannelElements\ICombinedOpenIdProviderTokenManager.cs" />
<Compile Include="OAuth\ChannelElements\IConsumerDescription.cs" />
@@ -657,7 +657,7 @@ http://opensource.org/licenses/ms-pl.html
<DependentUpon>OAuthWrapStrings.resx</DependentUpon>
</Compile>
<Compile Include="OAuthWrap\AuthorizationServerDescription.cs" />
- <Compile Include="OAuthWrap\WebAppClient.cs" />
+ <Compile Include="OAuthWrap\WebServerClient.cs" />
<Compile Include="Util.cs" />
<Compile Include="OAuth\Protocol.cs" />
<Compile Include="OAuth\ServiceProvider.cs" />
diff --git a/src/DotNetOpenAuth/OAuthWrap/ChannelElements/OAuthWrapAuthorizationServerChannel.cs b/src/DotNetOpenAuth/OAuthWrap/ChannelElements/OAuthWrapAuthorizationServerChannel.cs
index 4b7b472..e6ddad1 100644
--- a/src/DotNetOpenAuth/OAuthWrap/ChannelElements/OAuthWrapAuthorizationServerChannel.cs
+++ b/src/DotNetOpenAuth/OAuthWrap/ChannelElements/OAuthWrapAuthorizationServerChannel.cs
@@ -177,7 +177,7 @@ namespace DotNetOpenAuth.OAuthWrap.ChannelElements {
if (authorizationServer != null) {
bindingElements.Add(new AuthServerAllFlowsBindingElement());
- bindingElements.Add(new WebAppVerificationCodeBindingElement());
+ bindingElements.Add(new WebServerVerificationCodeBindingElement());
bindingElements.Add(new AccessRequestBindingElement());
}
diff --git a/src/DotNetOpenAuth/OAuthWrap/ChannelElements/WebAppVerificationCodeBindingElement.cs b/src/DotNetOpenAuth/OAuthWrap/ChannelElements/WebServerVerificationCodeBindingElement.cs
index 585e02f..2a5bbd0 100644
--- a/src/DotNetOpenAuth/OAuthWrap/ChannelElements/WebAppVerificationCodeBindingElement.cs
+++ b/src/DotNetOpenAuth/OAuthWrap/ChannelElements/WebServerVerificationCodeBindingElement.cs
@@ -17,11 +17,11 @@ namespace DotNetOpenAuth.OAuthWrap.ChannelElements {
/// A binding element for OAuth 2.0 authorization servers that create/verify
/// issued verification codes as part of obtaining access/refresh tokens.
/// </summary>
- internal class WebAppVerificationCodeBindingElement : AuthServerBindingElementBase {
+ internal class WebServerVerificationCodeBindingElement : AuthServerBindingElementBase {
/// <summary>
- /// Initializes a new instance of the <see cref="WebAppVerificationCodeBindingElement"/> class.
+ /// Initializes a new instance of the <see cref="WebServerVerificationCodeBindingElement"/> class.
/// </summary>
- internal WebAppVerificationCodeBindingElement() {
+ internal WebServerVerificationCodeBindingElement() {
}
/// <summary>
diff --git a/src/DotNetOpenAuth/OAuthWrap/WebAppAuthorizationServer.cs b/src/DotNetOpenAuth/OAuthWrap/WebServerAuthorizationServer.cs
index b4efb4f..5461e4c 100644
--- a/src/DotNetOpenAuth/OAuthWrap/WebAppAuthorizationServer.cs
+++ b/src/DotNetOpenAuth/OAuthWrap/WebServerAuthorizationServer.cs
@@ -15,12 +15,12 @@ namespace DotNetOpenAuth.OAuthWrap {
using DotNetOpenAuth.OAuthWrap.ChannelElements;
using DotNetOpenAuth.OAuthWrap.Messages;
- public class WebAppAuthorizationServer : AuthorizationServerBase {
+ public class WebServerAuthorizationServer : AuthorizationServerBase {
/// <summary>
- /// Initializes a new instance of the <see cref="WebAppAuthorizationServer"/> class.
+ /// Initializes a new instance of the <see cref="WebServerAuthorizationServer"/> class.
/// </summary>
/// <param name="authorizationServer">The authorization server.</param>
- public WebAppAuthorizationServer(IAuthorizationServer authorizationServer)
+ public WebServerAuthorizationServer(IAuthorizationServer authorizationServer)
: base(authorizationServer) {
Contract.Requires<ArgumentNullException>(authorizationServer != null, "authorizationServer");
}
diff --git a/src/DotNetOpenAuth/OAuthWrap/WebAppClient.cs b/src/DotNetOpenAuth/OAuthWrap/WebServerClient.cs
index 3e10da3..977fddb 100644
--- a/src/DotNetOpenAuth/OAuthWrap/WebAppClient.cs
+++ b/src/DotNetOpenAuth/OAuthWrap/WebServerClient.cs
@@ -18,12 +18,12 @@ namespace DotNetOpenAuth.OAuthWrap {
/// <summary>
/// An OAuth WRAP consumer designed for web applications.
/// </summary>
- public class WebAppClient : ClientBase {
+ public class WebServerClient : ClientBase {
/// <summary>
- /// Initializes a new instance of the <see cref="WebAppClient"/> class.
+ /// Initializes a new instance of the <see cref="WebServerClient"/> class.
/// </summary>
/// <param name="authorizationServer">The authorization server.</param>
- public WebAppClient(AuthorizationServerDescription authorizationServer)
+ public WebServerClient(AuthorizationServerDescription authorizationServer)
: base(authorizationServer) {
}