Examples of AfterLoginConfig


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
Copyright © 2018 www.massapi.com. 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.