Package org.olat.login.auth

Examples of org.olat.login.auth.OLATAuthentcationForm


      anoLink = LinkFactory.createLink("menu.guest", loginComp, this);
      anoLink.setCustomEnabledLinkCSS("o_login_guests");
    }
   
    // prepare login form
    loginForm = new OLATAuthentcationForm("loginForm", getTranslator());
    loginForm.addListener(this);
    loginComp.put("loginForm",loginForm);
   
    // Check if form is triggered by external loginworkflow that has been failed
    if (ureq.getParameterSet().contains(PARAM_LOGINERROR)) {
View Full Code Here


    if (LoginModule.isGuestLoginLinksEnabled()) {
      anoLink = LinkFactory.createLink("menu.guest", loginComp, this);
      anoLink.setCustomEnabledLinkCSS("o_login_guests");
    }
    // Use the standard OLAT login form but with our LDAP translator
    loginForm = new OLATAuthentcationForm("ldapForm", getTranslator());
    loginForm.addListener(this);
    loginComp.put("ldapForm", loginForm);
    loginForm.setVisible(true);
    putInitialPanel(loginComp);
  }
View Full Code Here

TOP

Related Classes of org.olat.login.auth.OLATAuthentcationForm

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.