Package br.gov.serpro.ouvidoria.dao

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


   */
  public void delete(Orgao orgao, Instituicao instituicao, final String id,
      final Timestamp dataVigencia) 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.setDataVigencia(dataVigencia);
View Full Code Here


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

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

   */
  public void save(Orgao orgao, final TipoMensagem object)
      throws DaoException {

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

    if (object == null) {
      throw new DaoException("Tipo da Mensagem não pode ser nula.");
    }

    defaultDao.save(object);

    if (orgao.getListaTipoMensagem().contains(object)) {
View Full Code Here

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

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

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

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

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

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

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

    TipoMensagem object = get(new Long(id));
    object.setDataVigencia(dataVigencia);
    save(orgao, object);
View Full Code Here

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

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

   * @throws DaoException
   */
  public Orgao get(final Long id) throws DaoException {

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

    final Orgao orgao = (Orgao) orgaoDao.get(id);

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

      final Timestamp dataFimAcionamento,
      final Timestamp dataInicioConsultaResposta,
      final Timestamp dataFimConsultaResposta) throws DaoException {

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

    Orgao orgao = get(new Long(id));
    orgao.setDescricao(descricao);
    orgao.setGestorResponsavel(gestorResponsavel);
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.