Package com.m2m.modelo

Examples of com.m2m.modelo.Usuario


            throws Exception {
       
            logger.info("guardando preferencia de usuario...");
            PreferenciasForm theForm = (PreferenciasForm) form;

            Usuario u = (Usuario) request.getSession(false).getAttribute(
            Constantes.USER_INFO);

            boolean sentido = theForm.getSentido().equals("busca");
            Integer id = null;
View Full Code Here


        setPreferenciasBL(new PreferenciasBL());

        //Preparo mi vector de respuesta
        JSONArray jsonArray = new JSONArray();

        Usuario u = (Usuario) request.getSession(false).getAttribute(
            Constantes.USER_INFO);

        List lista = null;

        if(prefForm.getSentido().equals("busca")){
            lista = preferenciasBL.getPreferenciasByUserBusca(u.getIdUsuario());
        }else{
            lista = preferenciasBL.getPreferenciasByUserOfrece(u.getIdUsuario());
        }
        //System.out.print(lista.size() + "es el tamaño" + " tipo" + prefForm.getSentido() );
        prefForm.setSentido("");
        Iterator it = lista.iterator();
        while(it.hasNext()){
View Full Code Here

        PreferenciasForm prefForm = (PreferenciasForm) form;

        setPreferenciasBL(new PreferenciasBL());

        Usuario u = (Usuario) request.getSession(false).getAttribute(
            Constantes.USER_INFO);

        if(!preferenciasBL.quitarPreferenciaSafe( new Integer(prefForm.getId()),
                u.getIdUsuario())){
            throw new Exception("La preferencia no pertenece al usuario ");
        }

      return null;
View Full Code Here

TOP

Related Classes of com.m2m.modelo.Usuario

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.