Package br.gov.serpro.ouvidoria.dao

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


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


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

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

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

    defaultDao.save(object);

    orgao.getListaTipoAvaliacaoResposta().remove(object);
View Full Code Here

  public void update(Orgao orgao, final String id, final String descricao,
      final Timestamp vigencia, final String tipoAvaliacao)
      throws DaoException {

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

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

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

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

    TipoAvaliacaoResposta object = get(new Long(id));

    object.setDataVigencia(dataVigencia);
View Full Code Here

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

   * @throws DaoException
   */
  public void save(Orgao orgao, final SubOrgao subOrgao) throws DaoException {

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

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

    subOrgaoDao.save(subOrgao);

    orgao.getListaSubOrgao().remove(subOrgao);
View Full Code Here

  public void update(Orgao orgao, final String id, final String descricao,
      final Timestamp dataInicioVigencia, final Timestamp dataFimVigencia)
      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.");
    }

    SubOrgao subOrgao = get(new Long(id));
    subOrgao.setDescricao(descricao);
    subOrgao.setDataInicioVigencia(dataInicioVigencia);
View Full Code Here

   */
  public void delete(Orgao orgao, final String id,
      final Timestamp dataFimVigencia) 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.");
    }

    SubOrgao subOrgao = get(new Long(id));
    subOrgao.setDataFimVigencia(dataFimVigencia);
    save(orgao, subOrgao);
View Full Code Here

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

   * @return
   * @throws DaoException
   */
  public Funcionario get(Long id) throws DaoException {
    if (id == null) {
      throw new DaoException("ID do Objeto não pode ser nulo.");
    }
    return (Funcionario) funcionarioDao.get(id);
  }
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.