Package com.bean

Examples of com.bean.Country


      HttpServletResponse response, ModelMap model) {

    logger.info("entro a controladora");

    List<Country> countries = new ArrayList<Country>();
    countries.add(new Country("IND", "INDIA"));
    countries.add(new Country("US", "USA"));
    countries.add(new Country("AU", "AUSTRALIA"));
    countries.add(new Country("MX", "MEXICO"));
    countries.add(new Country("COL", "COLOMBIA"));

    model.addAttribute("listCountries", countries);

    return "contacto";
  }
View Full Code Here

TOP

Related Classes of com.bean.Country

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.