Package org.apache.openmeetings.db.entity.user.User

Examples of org.apache.openmeetings.db.entity.user.User.Type


    if (domain.getAddDomainToUserName()) {
      login = login + "@" + domain.getDomain();
    }
    OmAuthenticationStrategy strategy = getAuthenticationStrategy();
    WebSession ws = WebSession.get();
    Type type = domain.getLdapConfigId() > 0 ? Type.ldap : Type.user;
    if (ws.signIn(login, password, type, domain.getLdapConfigId())) {
       setResponsePage(Application.get().getHomePage());
      if (rememberMe) {
        strategy.save(login, password, type, domain.getLdapConfigId());
      } else {
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.db.entity.user.User.Type

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.