Package br.gov.serpro.ouvidoria.dao

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


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


        return listaMeioEnvioResposta;
    }

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

    }

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

            final String textoNotificacaoPendencia,
            final String textoNotificacaoAtraso,
            final String textoNotificacaoAtrasoCritico) throws DaoException {

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

        ConfiguracoesOrgao configuracoesOrgao = get(new Long(id));

        /*Campos para envio de notificacao*/
 
View Full Code Here

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

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

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

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

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

   * @param id
   *            identificador do parâmetro
   */
  public void delete(Long id) throws DaoException {
    if (id == null) {
      throw new DaoException("ID do Objeto não pode ser nulo.");
    }
    paramDao.delete(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.