summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-10-21 17:05:42 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-10-21 17:05:42 -0700
commit5cefdbebc31194d9d8279c60abccdba2bece6745 (patch)
tree66613535d08050d892005ac4624e81e2c8f09257 /src/DotNetOpenAuth.OpenId.RelyingParty/OpenId
parent53c2a138a3761dd88c8272e01ea5aece709b91f2 (diff)
downloadDotNetOpenAuth-5cefdbebc31194d9d8279c60abccdba2bece6745.zip
DotNetOpenAuth-5cefdbebc31194d9d8279c60abccdba2bece6745.tar.gz
DotNetOpenAuth-5cefdbebc31194d9d8279c60abccdba2bece6745.tar.bz2
Moved behaviors into their own RP vs. OP namespaces.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId.RelyingParty/OpenId')
-rw-r--r--src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/Behaviors/AXFetchAsSregTransform.cs (renamed from src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Behaviors/AXFetchAsSregRelyingPartyTransform.cs)8
-rw-r--r--src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/Behaviors/GsaIcamProfile.cs (renamed from src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Behaviors/GsaIcamRelyingPartyProfile.cs)9
2 files changed, 9 insertions, 8 deletions
diff --git a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Behaviors/AXFetchAsSregRelyingPartyTransform.cs b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/Behaviors/AXFetchAsSregTransform.cs
index 12867f6..3f80d62 100644
--- a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Behaviors/AXFetchAsSregRelyingPartyTransform.cs
+++ b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/Behaviors/AXFetchAsSregTransform.cs
@@ -4,7 +4,7 @@
// </copyright>
//-----------------------------------------------------------------------
-namespace DotNetOpenAuth.OpenId.Behaviors {
+namespace DotNetOpenAuth.OpenId.RelyingParty.Behaviors {
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
@@ -22,11 +22,11 @@ namespace DotNetOpenAuth.OpenId.Behaviors {
/// to the originally requested extension and format.
/// </summary>
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Sreg", Justification = "Abbreviation")]
- public sealed class AXFetchAsSregRelyingPartyTransform : AXFetchAsSregTransform, IRelyingPartyBehavior {
+ public sealed class AXFetchAsSregTransform : AXFetchAsSregTransform, IRelyingPartyBehavior {
/// <summary>
- /// Initializes a new instance of the <see cref="AXFetchAsSregRelyingPartyTransform"/> class.
+ /// Initializes a new instance of the <see cref="AXFetchAsSregTransform"/> class.
/// </summary>
- public AXFetchAsSregRelyingPartyTransform() {
+ public AXFetchAsSregTransform() {
}
#region IRelyingPartyBehavior Members
diff --git a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Behaviors/GsaIcamRelyingPartyProfile.cs b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/Behaviors/GsaIcamProfile.cs
index e8532b2..fe4b13c 100644
--- a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Behaviors/GsaIcamRelyingPartyProfile.cs
+++ b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/Behaviors/GsaIcamProfile.cs
@@ -4,7 +4,7 @@
// </copyright>
//-----------------------------------------------------------------------
-namespace DotNetOpenAuth.OpenId.Behaviors {
+namespace DotNetOpenAuth.OpenId.RelyingParty.Behaviors {
using System;
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.Contracts;
@@ -15,6 +15,7 @@ namespace DotNetOpenAuth.OpenId.Behaviors {
using DotNetOpenAuth.OpenId.Extensions.ProviderAuthenticationPolicy;
using DotNetOpenAuth.OpenId.Extensions.SimpleRegistration;
using DotNetOpenAuth.OpenId.RelyingParty;
+ using DotNetOpenAuth.OpenId.Behaviors;
/// <summary>
/// Implements the Identity, Credential, &amp; Access Management (ICAM) OpenID 2.0 Profile
@@ -27,11 +28,11 @@ namespace DotNetOpenAuth.OpenId.Behaviors {
/// </remarks>
[Serializable]
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Icam", Justification = "Acronym")]
- public sealed class GsaIcamRelyingPartyProfile : GsaIcamProfile, IRelyingPartyBehavior {
+ public sealed class GsaIcamProfile : GsaIcamProfileBase, IRelyingPartyBehavior {
/// <summary>
- /// Initializes a new instance of the <see cref="GsaIcamRelyingPartyProfile"/> class.
+ /// Initializes a new instance of the <see cref="GsaIcamProfile"/> class.
/// </summary>
- public GsaIcamRelyingPartyProfile() {
+ public GsaIcamProfile() {
if (DisableSslRequirement) {
Logger.OpenId.Warn("GSA level 1 behavior has its RequireSsl requirement disabled.");
}