From c526a3a4224338e3174b1ce34eb8cb8390e34ad4 Mon Sep 17 00:00:00 2001 From: Dominick Baier Date: Mon, 9 Sep 2024 08:04:18 +0200 Subject: [PATCH] Update file headers --- src/Context/AuthenticationFailedContext.cs | 2 +- src/Context/SendingRequestContext.cs | 3 +++ src/Context/TokenValidatedContext.cs | 2 +- src/Context/UpdateClientAssertionContext.cs | 2 +- src/Infrastructure/AsyncLazy.cs | 2 +- src/Infrastructure/CacheExtensions.cs | 2 +- src/Infrastructure/CacheUtils.cs | 2 +- src/Infrastructure/ClaimConverter.cs | 3 +-- src/Infrastructure/ClaimLite.cs | 3 +-- src/Infrastructure/StringExtensions.cs | 2 +- src/Infrastructure/TokenRetrieval.cs | 2 +- src/OAuth2IntrospectionDefaults.cs | 2 +- src/OAuth2IntrospectionEvents.cs | 2 +- src/OAuth2IntrospectionExtensions.cs | 2 +- src/OAuth2IntrospectionHandler.cs | 2 +- src/OAuth2IntrospectionOptions.cs | 2 +- ...PostConfigureOAuth2IntrospectionOptions.cs | 2 +- test/Tests/Configuration.cs | 3 +-- test/Tests/Introspection.cs | 2 +- .../Util/IntrospectionEndpointHandler.cs | 2 +- test/Tests/Util/PipelineFactory.cs | 3 +-- test/Tests/Util/SimpleJson.cs | 20 ++----------------- 22 files changed, 25 insertions(+), 42 deletions(-) diff --git a/src/Context/AuthenticationFailedContext.cs b/src/Context/AuthenticationFailedContext.cs index aeb6765..75ea985 100644 --- a/src/Context/AuthenticationFailedContext.cs +++ b/src/Context/AuthenticationFailedContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Microsoft.AspNetCore.Authentication; diff --git a/src/Context/SendingRequestContext.cs b/src/Context/SendingRequestContext.cs index e691ae0..695feba 100644 --- a/src/Context/SendingRequestContext.cs +++ b/src/Context/SendingRequestContext.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using IdentityModel.Client; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; diff --git a/src/Context/TokenValidatedContext.cs b/src/Context/TokenValidatedContext.cs index eb7d33e..3a1bfa2 100644 --- a/src/Context/TokenValidatedContext.cs +++ b/src/Context/TokenValidatedContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Microsoft.AspNetCore.Authentication; diff --git a/src/Context/UpdateClientAssertionContext.cs b/src/Context/UpdateClientAssertionContext.cs index 8f9213e..5221b81 100644 --- a/src/Context/UpdateClientAssertionContext.cs +++ b/src/Context/UpdateClientAssertionContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/src/Infrastructure/AsyncLazy.cs b/src/Infrastructure/AsyncLazy.cs index 03711a4..62e1ec5 100644 --- a/src/Infrastructure/AsyncLazy.cs +++ b/src/Infrastructure/AsyncLazy.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/src/Infrastructure/CacheExtensions.cs b/src/Infrastructure/CacheExtensions.cs index 6f5e5ad..5593dfa 100644 --- a/src/Infrastructure/CacheExtensions.cs +++ b/src/Infrastructure/CacheExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Microsoft.Extensions.Caching.Distributed; diff --git a/src/Infrastructure/CacheUtils.cs b/src/Infrastructure/CacheUtils.cs index 2bcfff3..b087311 100644 --- a/src/Infrastructure/CacheUtils.cs +++ b/src/Infrastructure/CacheUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/src/Infrastructure/ClaimConverter.cs b/src/Infrastructure/ClaimConverter.cs index 3a1de36..ada7b0c 100644 --- a/src/Infrastructure/ClaimConverter.cs +++ b/src/Infrastructure/ClaimConverter.cs @@ -1,6 +1,5 @@ // Copyright (c) Duende Software. All rights reserved. -// See LICENSE in the project root for license information. - +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; using System.Security.Claims; diff --git a/src/Infrastructure/ClaimLite.cs b/src/Infrastructure/ClaimLite.cs index e8a1ca6..f413633 100644 --- a/src/Infrastructure/ClaimLite.cs +++ b/src/Infrastructure/ClaimLite.cs @@ -1,6 +1,5 @@ // Copyright (c) Duende Software. All rights reserved. -// See LICENSE in the project root for license information. - +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. #pragma warning disable 1591 diff --git a/src/Infrastructure/StringExtensions.cs b/src/Infrastructure/StringExtensions.cs index 055a563..ff4e5d7 100644 --- a/src/Infrastructure/StringExtensions.cs +++ b/src/Infrastructure/StringExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/src/Infrastructure/TokenRetrieval.cs b/src/Infrastructure/TokenRetrieval.cs index c3b07df..337a43d 100644 --- a/src/Infrastructure/TokenRetrieval.cs +++ b/src/Infrastructure/TokenRetrieval.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Microsoft.AspNetCore.Http; diff --git a/src/OAuth2IntrospectionDefaults.cs b/src/OAuth2IntrospectionDefaults.cs index 36735a9..12e1412 100644 --- a/src/OAuth2IntrospectionDefaults.cs +++ b/src/OAuth2IntrospectionDefaults.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. namespace IdentityModel.AspNetCore.OAuth2Introspection diff --git a/src/OAuth2IntrospectionEvents.cs b/src/OAuth2IntrospectionEvents.cs index c7ac7c5..306f7b8 100644 --- a/src/OAuth2IntrospectionEvents.cs +++ b/src/OAuth2IntrospectionEvents.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/src/OAuth2IntrospectionExtensions.cs b/src/OAuth2IntrospectionExtensions.cs index d745169..0bbe321 100644 --- a/src/OAuth2IntrospectionExtensions.cs +++ b/src/OAuth2IntrospectionExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/src/OAuth2IntrospectionHandler.cs b/src/OAuth2IntrospectionHandler.cs index abb5a54..5c25a54 100644 --- a/src/OAuth2IntrospectionHandler.cs +++ b/src/OAuth2IntrospectionHandler.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/src/OAuth2IntrospectionOptions.cs b/src/OAuth2IntrospectionOptions.cs index 0914b0a..7ed81ab 100644 --- a/src/OAuth2IntrospectionOptions.cs +++ b/src/OAuth2IntrospectionOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using IdentityModel.AspNetCore.OAuth2Introspection.Infrastructure; diff --git a/src/PostConfigureOAuth2IntrospectionOptions.cs b/src/PostConfigureOAuth2IntrospectionOptions.cs index aa219a1..3a46e5e 100644 --- a/src/PostConfigureOAuth2IntrospectionOptions.cs +++ b/src/PostConfigureOAuth2IntrospectionOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/test/Tests/Configuration.cs b/test/Tests/Configuration.cs index 597d4fa..8bf52bc 100644 --- a/test/Tests/Configuration.cs +++ b/test/Tests/Configuration.cs @@ -1,7 +1,6 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using FluentAssertions; using IdentityModel.AspNetCore.OAuth2Introspection; using IdentityModel.Client; diff --git a/test/Tests/Introspection.cs b/test/Tests/Introspection.cs index 0177d46..60cd78a 100644 --- a/test/Tests/Introspection.cs +++ b/test/Tests/Introspection.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using FluentAssertions; diff --git a/test/Tests/Util/IntrospectionEndpointHandler.cs b/test/Tests/Util/IntrospectionEndpointHandler.cs index e952a7a..6e993f2 100644 --- a/test/Tests/Util/IntrospectionEndpointHandler.cs +++ b/test/Tests/Util/IntrospectionEndpointHandler.cs @@ -1,4 +1,4 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/test/Tests/Util/PipelineFactory.cs b/test/Tests/Util/PipelineFactory.cs index 8648bf0..48b5301 100644 --- a/test/Tests/Util/PipelineFactory.cs +++ b/test/Tests/Util/PipelineFactory.cs @@ -1,7 +1,6 @@ -// Copyright (c) Dominick Baier & Brock Allen. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.DependencyInjection; using System.Net.Http; diff --git a/test/Tests/Util/SimpleJson.cs b/test/Tests/Util/SimpleJson.cs index 5f06f35..183d3f4 100644 --- a/test/Tests/Util/SimpleJson.cs +++ b/test/Tests/Util/SimpleJson.cs @@ -1,21 +1,5 @@ -//----------------------------------------------------------------------- -// -// Copyright (c) 2011, The Outercurve Foundation. -// -// Licensed under the MIT License (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.opensource.org/licenses/mit-license.php -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -// Nathan Totten (ntotten.com), Jim Zimmerman (jimzimmerman.com) and Prabir Shrestha (prabir.me) -// https://github.com/facebook-csharp-sdk/simple-json -//----------------------------------------------------------------------- +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. // VERSION: