Esempio n. 1
0
  /**
   * @autor IECISA
   * @param rec Objeto UasDaoUserRecUa con la información del usuario que debe ser actualizada
   * @param id Identificador del usuario
   * @throws Exception Exception if the application business logic throws an exception
   * @since V1.0
   */
  public static void incrementNumBadCntsAndLocked(UasDaoUserRecUa rec, int id) throws Exception {

    DbUpdateFns.update(null, TN, UaCN, rec, getDefaultQual(id));
  }
Esempio n. 2
0
  /**
   * @autor IECISA
   * @param rec Objeto UasDaoUserRecUb con la información del usuario que debe ser actualizada
   * @param id Identificador del usuario
   * @throws Exception Exception if the application business logic throws an exception
   * @since V1.0
   */
  public static void updateRow(UasDaoUserRecUb rec, int id) throws Exception {

    DbUpdateFns.update(null, TN, UbCN, rec, getDefaultQual(id));
  }
Esempio n. 3
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));
  }