Package org.jibeframework.core.app.config

Examples of org.jibeframework.core.app.config.ConfigurationConfig


  private ConfigService configService;
  private Authenticator authenticator;

  public Authenticator getAuthenticator() {
    if (authenticator == null) {
      ConfigurationConfig cc = configService.getConfig(ConfigurationConfig.class);
      String authId = cc.getConfiguration().getString("authenticator", null);
      if (authId != null) {
        authenticator = (Authenticator) applicationContext.getBean(authId);
      } else {
        authenticator = new NoActionAuthenticator();
      }
View Full Code Here

TOP

Related Classes of org.jibeframework.core.app.config.ConfigurationConfig

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.