Examples of authenticateByEmailAddress()


Examples of com.liferay.portal.auth.Authenticator.authenticateByEmailAddress()

            Class ldap_auth_impl_class = Class.forName(Config.getStringProperty("LDAP_FRONTEND_AUTH_IMPLEMENTATION"));
            Authenticator ldap_auth_impl = (Authenticator) ldap_auth_impl_class.newInstance();
            int auth = 0;

          if (comp.getAuthType().equals(Company.AUTH_TYPE_EA)) {
            auth = ldap_auth_impl.authenticateByEmailAddress(comp.getCompanyId(), userName, password);
        } else {
          auth = ldap_auth_impl.authenticateByUserId(comp.getCompanyId(), userName, password);
        }

          if (comp.getAuthType().equals(Company.AUTH_TYPE_EA)) {
View Full Code Here

Examples of com.liferay.portal.auth.Authenticator.authenticateByEmailAddress()

            Class ldap_auth_impl_class = Class.forName(Config.getStringProperty("LDAP_FRONTEND_AUTH_IMPLEMENTATION"));
            Authenticator ldap_auth_impl = (Authenticator) ldap_auth_impl_class.newInstance();
            int auth = 0;

          if (comp.getAuthType().equals(Company.AUTH_TYPE_EA)) {
            auth = ldap_auth_impl.authenticateByEmailAddress(comp.getCompanyId(), userName, password);
         } else {
           auth = ldap_auth_impl.authenticateByUserId(comp.getCompanyId(), userName, password);
         }

          if (comp.getAuthType().equals(Company.AUTH_TYPE_EA)) {
View Full Code Here

Examples of com.liferay.portal.auth.Authenticator.authenticateByEmailAddress()

    try {
      if (PRE_AUTHENTICATOR != null && !PRE_AUTHENTICATOR.equals("")) {
        Authenticator authenticator;
        authenticator = (Authenticator) new com.dotcms.repackage.bsh.Interpreter().eval("new " + PRE_AUTHENTICATOR + "()");
        if (useEmailAsLogin) {
          authenticator.authenticateByEmailAddress(comp.getCompanyId(), username, passwd);
        } else {
          authenticator.authenticateByUserId(comp.getCompanyId(), username, passwd);
        }
      }
    }catch (AuthException ae) {
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.