Package br.gov.serpro.ouvidoria.dao

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


        LocalidadeOcorrencia localidadeOcorrencia;
        List listaLocalidadeOcorrencia = new ArrayList();
        Iterator iter;
       
        if (idAssunto == null) {
            throw new DaoException("Id do assunto não pode ser nulo.");
        }
       
        assunto = (Assunto) assuntoDao.get(new Long(String.valueOf(idAssunto)));
       
        if (assunto != null) {
View Full Code Here


        Collection listaAssuntoSubOrgao = new ArrayList();
       
        List listaAssunto = new ArrayList();
       
        if (orgao == null) {
            throw new DaoException("Órgão não pode ser nulo.");
        }
       
        listaSubOrgao = orgao.getListaSubOrgao();
       
        if (listaSubOrgao != null) {
View Full Code Here

        Hashtable hash = new Hashtable();
        Iterator iter;
        Iterator iter2;
       
        if (orgao == null) {
            throw new DaoException("Órgão não pode ser nulo.");
        }
       
        listaSubOrgao = orgao.getListaSubOrgao();
       
        if (listaSubOrgao != null) {
View Full Code Here

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

     * @param id
     *            identificador do Atendimento
     */
    public void delete(Long id) throws DaoException {
        if (id == null) {
            throw new DaoException("ID do Objeto não pode ser nulo.");
        }
        atendimentoDao.delete(id);
    }
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 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 da solução
     */
    public Solucao get(Long id) throws DaoException {
        if (id == null) {
            throw new DaoException("ID do Objeto não pode ser nulo.");
        }
        return (Solucao) solucaoDao.get(id);
    }
View Full Code Here

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

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