Browse Source

Add license headers

pull/5/head
Kévin Chalet 11 years ago
parent
commit
bcb39f44bb
  1. 8
      src/OpenIddict.Models/Application.cs
  2. 8
      src/OpenIddict.Models/ApplicationType.cs
  3. 8
      src/OpenIddict/OpenIddictContext.cs
  4. 8
      src/OpenIddict/OpenIddictController.cs
  5. 8
      src/OpenIddict/OpenIddictDefaults.cs
  6. 8
      src/OpenIddict/OpenIddictExtensions.cs
  7. 8
      src/OpenIddict/OpenIddictOptions.cs
  8. 8
      src/OpenIddict/OpenIddictProvider.cs

8
src/OpenIddict.Models/Application.cs

@ -1,4 +1,10 @@
namespace OpenIddict.Models {
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/core for more information concerning
* the license and the contributors participating to this project.
*/
namespace OpenIddict.Models {
public class Application {
public string ApplicationID { get; set; }
public string DisplayName { get; set; }

8
src/OpenIddict.Models/ApplicationType.cs

@ -1,4 +1,10 @@
namespace OpenIddict.Models {
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/core for more information concerning
* the license and the contributors participating to this project.
*/
namespace OpenIddict.Models {
public enum ApplicationType {
Public = 0,
Confidential = 1

8
src/OpenIddict/OpenIddictContext.cs

@ -1,4 +1,10 @@
using System;
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.Data.Entity;
using OpenIddict.Models;

8
src/OpenIddict/OpenIddictController.cs

@ -1,4 +1,10 @@
using System;
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Linq;
using System.Security.Claims;
using System.Threading;

8
src/OpenIddict/OpenIddictDefaults.cs

@ -1,4 +1,10 @@
namespace OpenIddict {
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/core for more information concerning
* the license and the contributors participating to this project.
*/
namespace OpenIddict {
public static class OpenIddictDefaults {
/// <summary>
/// Gets the default authentication scheme used by OpenIddict.

8
src/OpenIddict/OpenIddictExtensions.cs

@ -1,4 +1,10 @@
using System;
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.Tracing;

8
src/OpenIddict/OpenIddictOptions.cs

@ -1,4 +1,10 @@
using System;
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using AspNet.Security.OpenIdConnect.Server;
using Microsoft.AspNet.Http;

8
src/OpenIddict/OpenIddictProvider.cs

@ -1,4 +1,10 @@
using System;
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Diagnostics;
using System.IdentityModel.Tokens.Jwt;
using System.Linq;

Loading…
Cancel
Save