Examples of eliminarUsuario()


Examples of unlp.edu.core.Sistema.eliminarUsuario()

    String  nombreUsuario = (String) eliminarUsuarioForm.get("nombreUsuario");
   
    Sistema sistema = Sistema.getInstance();
    Usuario savedUsuario = sistema.getUsuario(nombreUsuario);
   
    sistema.eliminarUsuario(savedUsuario);
   
    // Mostramos la siguiente vista
    return mapping.findForward("ok");
   
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.