Package de.innovationgate.webgate.api.auth

Examples of de.innovationgate.webgate.api.auth.AuthModuleFactory


        protected void init() {
          if (_config != null) {
              // Authentication
              try {
                  AuthModuleFactory authFactory = WGFactory.getAuthModuleFactory();
                  AuthenticationSource authSource = _config.getAuthenticationSource();
                  if (authSource != null) {
                    _authModule = authFactory.getAuthModule(authSource.getImplClassName(), authSource.getOptions(), null);
                  }
              }
              catch (de.innovationgate.webgate.api.auth.ConfigurationException e) {
                  getLog().error("Authentication module of domain '" + getName() + "' is misconfigured and inactive", e);
              }
View Full Code Here

TOP

Related Classes of de.innovationgate.webgate.api.auth.AuthModuleFactory

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.