// Confirma los cambios en la bbdd
if (!conn.isAutoCommit()) conn.commit();
}
catch (DataException ex)
{
throw new AuthenticationException(ex.getMessage(), ex);
}
catch (Exception ex)
{
throw new AuthenticationException(ex.getMessage(), ex);
}
finally
{
if (conn != null)
{