Package es.ua.dccia

Examples of es.ua.dccia.MueveteException


    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        UsuarioBO ubo = new UsuarioBO();
        String login = req.getParameter("login");
        if (login==null)
            throw new MueveteException("Falta el parámetro 'login'");
        else
            Usuario usuario = ubo.getUsuario(login);
            Map m = new HashMap();
            m.put("usuario", usuario);
            render(m, "usuario", resp);
View Full Code Here


                UsuarioDao uDao = new UsuarioDao(em);
                uDao.create(u);
                //copiar imagen de perfil por defecto con el login del usuario
                ImagenService.getInstance().copiaPerfilDefecto(u.getLogin());
            } else {
                throw new MueveteException("El usuario " + u.getLogin() + " ya existe");
            }
        } finally {
            em.getTransaction().commit();
            em.close();
        }
View Full Code Here

       
        //comprobar que la petición existe
        PeticionDao peticionDao = new PeticionDao(em);
        Peticion peticion = peticionDao.find(idPeticion);
        if (peticion==null)
            throw new MueveteException("La petición que estás intentando firmar no existe: " + idPeticion);  
        //lo hacemos distinto según si es una firma autentificada o no
        if (autentificado != null) {
            firma = new FirmaAutentificada();
            FirmaAutentificada fa = (FirmaAutentificada) firma;
            UsuarioDao udao = new UsuarioDao(em);
View Full Code Here

TOP

Related Classes of es.ua.dccia.MueveteException

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.