Package br.gov.frameworkdemoiselle.internal.bootstrap

Examples of br.gov.frameworkdemoiselle.internal.bootstrap.AuthenticatorBootstrap


  private Authorizer authorizer;

  private Authenticator getAuthenticator() {
    if (this.authenticator == null) {
      AuthenticatorBootstrap bootstrap = Beans.getReference(AuthenticatorBootstrap.class);
      Class<? extends Authenticator> clazz = getConfig().getAuthenticatorClass();

      if (clazz == null) {
        clazz = StrategySelector.getClass(Authenticator.class, bootstrap.getCache());
      }

      this.authenticator = Beans.getReference(clazz);
    }
View Full Code Here


  private Authorizer authorizer;

  private Authenticator getAuthenticator() {
    if (this.authenticator == null) {
      AuthenticatorBootstrap bootstrap = Beans.getReference(AuthenticatorBootstrap.class);
      Class<? extends Authenticator> clazz = getConfig().getAuthenticatorClass();

      if (clazz == null) {
        clazz = StrategySelector.getClass(Authenticator.class, bootstrap.getCache());
      }

      this.authenticator = Beans.getReference(clazz);
    }
View Full Code Here

TOP

Related Classes of br.gov.frameworkdemoiselle.internal.bootstrap.AuthenticatorBootstrap

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.