Package com.gitblit.auth

Examples of com.gitblit.auth.AuthenticationProvider


          } else {
            // reflective lookup
            authClass = Class.forName(provider);
          }
          logger.info("setting up {}", authClass.getName());
          AuthenticationProvider authImpl = (AuthenticationProvider) authClass.newInstance();
          authImpl.setup(runtimeManager, userManager);
          authenticationProviders.add(authImpl);
        } catch (Exception e) {
          logger.error("", e);
        }
      }
View Full Code Here


          } else {
            // reflective lookup
            authClass = Class.forName(provider);
          }
          logger.info("setting up {}", authClass.getName());
          AuthenticationProvider authImpl = (AuthenticationProvider) authClass.newInstance();
          authImpl.setup(runtimeManager, userManager);
          authenticationProviders.add(authImpl);
        } catch (Exception e) {
          logger.error("", e);
        }
      }
View Full Code Here

TOP

Related Classes of com.gitblit.auth.AuthenticationProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.