Package com.odb.core.service.exceptions

Examples of com.odb.core.service.exceptions.InvalidAuthenticationException


  public SubscriberInfo subscriberLogin(String username, String password) throws InvalidAuthenticationException {
    SubscriberInfo subInfo = null;
    try {
      subInfo = odbDAO.subscriberLogin(username, password);
      if (subInfo == null)
        throw new InvalidAuthenticationException("Invalid Credentials");
    } catch (SQLException e) {
      log.error("Subscriber Login failed..." + e);
    }
    return subInfo;
  }
View Full Code Here

TOP

Related Classes of com.odb.core.service.exceptions.InvalidAuthenticationException

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.