Package org.universa.tcc.gemda.service

Examples of org.universa.tcc.gemda.service.ServiceException


  public void inserir(T entidade) throws ValidationException, ServiceException {
    validarEntidadeParaInserir(entidade);
    try {
      dao.inserir(entidade);
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.INSERIR, e);
    }
  }
View Full Code Here


  public void alterar(T entidade) throws ValidationException, ServiceException {
    validarEntidadeParaAlterar(entidade);
    try {
      dao.alterar(entidade);
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.ALTERAR, e);
    }
  }
View Full Code Here

  public void excluir(T entidade) throws ValidationException, ServiceException {
    validarEntidadeParaExcluir(entidade);
    try {
      dao.excluir(entidade);
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.EXCLUIR, e);
    }
  }
View Full Code Here

  @Override
  public List<T> listar(String... orderBy) throws ServiceException {
    try {
      return dao.listar(orderBy);
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.LISTAR, e);
    }
  }
View Full Code Here

  @Override
  public List<T> pesquisar(T entidade) throws ServiceException {
    try {
      return dao.pesquisar(entidade);
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.PESQUISAR, e);
    }
  }
View Full Code Here

  @Override
  public List<T> pesquisar(T entidade, int pagina, int maxItens) throws ServiceException {
    try {
      return dao.pesquisar(entidade, pagina, maxItens);
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.PESQUISAR, e);
    }
  }
View Full Code Here

  @Override
  public T recuperar(T entidade) throws ServiceException {
    try {
      return dao.recuperar(entidade);
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.RECUPERAR, e);
    }
  }
View Full Code Here

      throw new ValidationException(obterEntidadeDoParametroGenerico(), EventType.RECUPERAR);
    }
    try {
      return dao.recuperar(id);
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.RECUPERAR, e);
    }
  }
View Full Code Here

  @Override
  public long count() throws ServiceException {
    try {
      return dao.count();
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.COUNT, e);
    }
  }
View Full Code Here

  @Override
  public long count(T entidade) throws ServiceException {
    try {
      return dao.count(entidade);
    } catch (DAOException e) {
      throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.COUNT, e);
    }
  }
View Full Code Here

TOP

Related Classes of org.universa.tcc.gemda.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.