Skip to content
This repository has been archived by the owner on Dec 28, 2017. It is now read-only.

Commit

Permalink
Merge pull request #50 from cake-contrib/feature/GH-46
Browse files Browse the repository at this point in the history
(GH-46) Make authentication classes internal
  • Loading branch information
pascalberger committed May 24, 2017
2 parents 97b8e6c + 8a1d300 commit 957b6a5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// <summary>
/// Credentials for authentication with an Azure Active Directory.
/// </summary>
public class TfsAadCredentials : TfsBasicCredentials
internal class TfsAadCredentials : TfsBasicCredentials
{
/// <summary>
/// Initializes a new instance of the <see cref="TfsAadCredentials"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// <summary>
/// Credentials for basic authentication.
/// </summary>
public class TfsBasicCredentials : IPrcaCredentials
internal class TfsBasicCredentials : IPrcaCredentials
{
/// <summary>
/// Initializes a new instance of the <see cref="TfsBasicCredentials"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// <summary>
/// Credentials for integrated / NTLM authentication.
/// </summary>
public class TfsNtlmCredentials : IPrcaCredentials
internal class TfsNtlmCredentials : IPrcaCredentials
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// <summary>
/// Credentials for OAuth authentication.
/// </summary>
public class TfsOAuthCredentials : IPrcaCredentials
internal class TfsOAuthCredentials : IPrcaCredentials
{
/// <summary>
/// Initializes a new instance of the <see cref="TfsOAuthCredentials"/> class.
Expand Down

0 comments on commit 957b6a5

Please sign in to comment.