Package br.gov.serpro.ouvidoria.dao

Examples of br.gov.serpro.ouvidoria.dao.DaoException


   * @return
   * @throws DaoException
   */
  public LocalidadeOcorrencia get(final Long id) throws DaoException {
    if (id == null) {
      throw new DaoException("ID do Objeto não pode ser nulo.");
    }
    return (LocalidadeOcorrencia) localidadeOcorrenciaDao.get(id);
  }
View Full Code Here


  public void save(SubOrgao subOrgao,
      final LocalidadeOcorrencia localidadeOcorrencia)
      throws DaoException {

    if (subOrgao == null) {
      throw new DaoException("SubOrgao não pode ser nulo.");
    }

    if (localidadeOcorrencia == null) {
      throw new DaoException("LocalidadeOcorrencia não pode ser nulo.");
    }
    localidadeOcorrenciaDao.save(localidadeOcorrencia);

    subOrgao.getListaLocalidadeOcorrencia().remove(localidadeOcorrencia);
    subOrgao.getListaLocalidadeOcorrencia().add(localidadeOcorrencia);
View Full Code Here

  public void update(SubOrgao subOrgao, final String id,
      final String descricao, final Timestamp vigencia)
      throws DaoException {

    if (subOrgao == null) {
      throw new DaoException("SubOrgao não pode ser nulo.");
    }

    if (id == null) {
      throw new DaoException("ID do Objeto não pode ser nulo.");
    }

    LocalidadeOcorrencia localidadeOcorrencia = get(new Long(id));
    localidadeOcorrencia.setDescricao(descricao);
    localidadeOcorrencia.setDataVigencia(vigencia);
View Full Code Here

   */
  public void delete(SubOrgao subOrgao, final String id,
      final Timestamp dataVigencia) throws DaoException {

    if (subOrgao == null) {
      throw new DaoException("SubOrgao não pode ser nulo.");
    }

    if (id == null) {
      throw new DaoException("ID do Objeto não pode ser nulo.");
    }

    LocalidadeOcorrencia localidadeOcorrencia = get(new Long(id));
    localidadeOcorrencia.setDataVigencia(dataVigencia);
    save(subOrgao, localidadeOcorrencia);
View Full Code Here

   * @param id
   *            identificador do script
   */
  public Script get(Long id) throws DaoException {
    if (id == null) {
      throw new DaoException("ID do Objeto não pode ser nulo.");
    }
    return (Script) scriptDao.get(id);
  }
View Full Code Here

   * @param id
   *            identificador do script
   */
  public void delete(Long id) throws DaoException {
    if (id == null) {
      throw new DaoException("ID do Objeto não pode ser nulo.");
    }
    scriptDao.delete(id);
  }
View Full Code Here

    defaultDao = daoFactory.create(Assunto.class);
  }

  public Assunto get(final Long id) throws DaoException {
    if (id == null) {
      throw new DaoException("ID do Objeto não pode ser nulo.");
    }
    return (Assunto) defaultDao.get(id);
  }
View Full Code Here

  public void save(Orgao orgao, Instituicao instituicao, final Assunto object)
      throws DaoException {

    if (orgao == null) {
      throw new DaoException("Órgão não pode ser nulo.");
    }

    if (instituicao == null) {
      throw new DaoException("Instituição não pode ser nulo.");
    }

    if (object == null) {
      throw new DaoException("Assunto não pode ser nulo.");
    }

    defaultDao.save(object);

    if (orgao.getListaAssunto() == null) {
View Full Code Here

      final String descricao, String descricaoDetalhada,
      final Integer prazoInterno, final Integer prazoExterno,
      final Timestamp vigencia) throws DaoException {

    if (instituicao == null) {
      throw new DaoException("Órgão não pode ser nulo.");
    }

    Assunto object = new Assunto();

    object.setDataCadastramento(new Timestamp(System.currentTimeMillis()));
View Full Code Here

      final String descricao, String descricaoDetalhada,
      final Integer prazoInterno, final Integer prazoExterno,
      final Timestamp vigencia) throws DaoException {

    if (instituicao == null) {
      throw new DaoException("Órgão não pode ser nulo.");
    }

    if (id == null) {
      throw new DaoException("ID do Objeto não pode ser nulo.");
    }

    Assunto object = get(new Long(id));
    object.setDescricao(descricao);
    object.setDescricaoDetalhada(descricaoDetalhada);
View Full Code Here

TOP

Related Classes of br.gov.serpro.ouvidoria.dao.DaoException

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.