summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthony O. <netangel+github@gmail.com>2014-08-08 10:47:05 +0200
committerAnthony O. <netangel+github@gmail.com>2014-08-08 10:47:05 +0200
commitbdcb8d6d8c858e71f21a274654a41d6d5ab799fc (patch)
tree7930c36136050812b98e8da711b5d93e79422ed3
parent3e0c6ca8a65bd4b076cac1451c9cdfde4be1d4b8 (diff)
downloadgitblit-bdcb8d6d8c858e71f21a274654a41d6d5ab799fc.tar.gz
gitblit-bdcb8d6d8c858e71f21a274654a41d6d5ab799fc.zip
Update setup_authentication.mkd
In AuthenticationManager:385, only `provider instanceof UsernamePasswordAuthenticationProvider` will be called
-rw-r--r--src/site/setup_authentication.mkd2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/site/setup_authentication.mkd b/src/site/setup_authentication.mkd
index 02d1be70..87b67497 100644
--- a/src/site/setup_authentication.mkd
+++ b/src/site/setup_authentication.mkd
@@ -119,7 +119,7 @@ If you are using the WAR variant and deploying into your own servlet container w
This is the simplest choice where you implement custom authentication and delegate all other standard user and team operations to one of Gitblit's user service implementations. This choice insulates your customization from changes in User and Team model classes and additional API that may be added to IUserService.
-Please subclass [com.gitblit.auth.AuthenticationProvider](https://github.com/gitblit/gitblit/blob/master/src/main/java/com/gitblit/auth/AuthenticationProvider.java).
+Please subclass [com.gitblit.auth.AuthenticationProvider.UsernamePasswordAuthenticationProvider](https://github.com/gitblit/gitblit/blob/master/src/main/java/com/gitblit/auth/AuthenticationProvider.java).
You may use your subclass by specifying its fully qualified classname in the *realm.authenticationProviders* setting.