Package br.com.buyFast.service

Examples of br.com.buyFast.service.ServiceException


      logger.info("Salvando produto " + product + " no banco de dados ...");
      this.productDao.save(product);
    } catch (Exception e) {
      String messageError = "Erro ao salvar produto " + product + ".";
      logger.error(messageError, e);
      throw new ServiceException(messageError, e);
    }
  }
View Full Code Here


      logger.info("Removendo produto " + product + " ...");
      productDao.delete(product);
    } catch (DaoException e) {
      String messageError = "Erro ao remover produto.";
      logger.error(messageError, e);
      throw new ServiceException(messageError, e);
    }
  }
View Full Code Here

      logger.info("Atualizando produto " + product + " ...");
      productDao.update(product);
    } catch (DaoException e) {
      String messageError = "Erro ao atualizar produto.";
      logger.error(messageError, e);
      throw new ServiceException(messageError, e);
    }
  }
View Full Code Here

        return false;
      }
    } catch (DaoException e) {
      String error = "Erro ao verificar existência de produto.";
      logger.error(error, e);
      throw new ServiceException(error, e);
    }
  }
View Full Code Here

      logger.info("Obtendo todos os produtos...");
      return productDao.all();
    } catch (DaoException e) {
      String error = "Erro ao obter produtos.";
      logger.error(error, e);
      throw new ServiceException(error, e);
    }
  }
View Full Code Here

      Map<String, Object> params = new HashMap<String, Object>();
      return productDao.listSearchParam(query, params, maxResult, 1);
    } catch (DaoException e) {
      String error = "Erro ao obter produtos.";
      logger.error(error, e);
      throw new ServiceException(error, e);
    }
  }
View Full Code Here

    try {
      return productDao.listSearchParam(query, params);
    } catch (DaoException e) {
      String error = "Erro ao obter produtos.";
      logger.error(error, e);
      throw new ServiceException(error, e);
    }
  }
View Full Code Here

    try {
      return productDao.listSearchParam(query, params);
    } catch (DaoException e) {
      String error = "Erro ao obter produtos.";
      logger.error(error, e);
      throw new ServiceException(error, e);
    }
  }
View Full Code Here

      logger.info("Obtendo o produto com id = " + id + " ...");
      return productDao.searchById(id);
    } catch (DaoException e) {
      String error = "Erro ao obter produto.";
      logger.error(error, e);
      throw new ServiceException(error, e);
    }
  }
View Full Code Here

     
      return null;
    } catch (DaoException e) {
      String error = "Erro ao obter usuário.";
      logger.error(error, e);
      throw new ServiceException(error, e);
    }
  }
View Full Code Here

TOP

Related Classes of br.com.buyFast.service.ServiceException

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.