Package org.olat.login

Examples of org.olat.login.AfterLoginConfig


    NewControllerFactory.getInstance().addContextEntryControllerCreator(Identity.class.getSimpleName(),
        new IdentityContextEntryControllerCreator());
   
    // Append AfterLoginControllers if any configured
    if (CoreSpringFactory.containsBean("org.olat.user.AfterLoginConfig")) {
      AfterLoginConfig aLConf = (AfterLoginConfig) CoreSpringFactory.getBean("org.olat.user.AfterLoginConfig");
      if (aLConf != null) {
        AfterLoginInterceptionManager.getInstance().addAfterLoginControllerConfig(aLConf);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.olat.login.AfterLoginConfig

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.