コード例 #1
0
  /**
   * Method to authenticate user. calling external system to authenticate user.
   *
   * @param login the login
   * @param sharedServieRequest - having user information .
   * @return status - true/false
   */
  @Override
  public final SecurityResponse login(
      final Login login, final SharedServieRequest sharedServieRequest) {

    LOGGER.info("In login method");
    return userManagement.authenticateUser(sharedServieRequest);
  }