Package edu.dartmouth.cs.gae_sample.data

Examples of edu.dartmouth.cs.gae_sample.data.Contact


      getServletContext().getRequestDispatcher("/query_result.jsp")
          .forward(req, resp);
      return;
    }

    Contact contact = new Contact(id, tema, titulo, resumen, autorind, autor1, autor2, autor3, autor4, autor5, autor6, afiliacion, unal, institucion, cargo, dia, mes, anio, lugar, fecha, nombre, editorial, ubicacion, acceso, importancia, observ, ambiental, bienestar, democracia, formacion, invest, legado, megat, nalPub, territ);

    boolean ret = ContactDatastore.add(contact);
    if (ret) {
      req.setAttribute("_retStr", "Add contact " + id + " succ");
View Full Code Here


    String megat = req.getParameter("megat");
    String nalPub = req.getParameter("nalPub");
    String territ = req.getParameter("territ");
   
    if (id != null && !id.equals("")) {
      Contact contact = new Contact(id, tema, titulo, resumen, autorind, autor1, autor2, autor3, autor4, autor5, autor6, afiliacion, unal, institucion, cargo, dia, mes, anio, lugar, fecha, nombre, editorial, ubicacion, acceso, importancia, observ, ambiental, bienestar, democracia, formacion, invest, legado, megat, nalPub, territ);
      ContactDatastore.update(contact);
    }

    resp.sendRedirect("/query.do");
  }
View Full Code Here

TOP

Related Classes of edu.dartmouth.cs.gae_sample.data.Contact

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.