예제 #1
0
  /**
   * @autor IECISA
   * @param NumBadCnts Número de intentos de login que ha realizado el usuario
   * @param id Identificador del usuario
   * @throws Exception Exception if the application business logic throws an exception
   * @since V1.0
   */
  public static void updateNumBadCnts(int NumBadCnts, int id) throws Exception {

    DbUpdateFns.updateLongInteger(
        null, TN, CD_NUMBADCNTS.getName(), NumBadCnts, getDefaultQual(id));
  }