Package cl.loso.melon.server.pojos

Examples of cl.loso.melon.server.pojos.FueraServicio


  public static FueraServicio getListaEventoLNbyId(Long idUsuario,
      Long idListaEvento) {
    PersistenceManager pm = PMF.get().getPersistenceManager();
    ListaEventoLN evento = null;
    FueraServicio fueraServicio = null;
    try {
      Key k1 = KeyFactory.createKey(UsuarioLN.class.getSimpleName(),
          idUsuario);
      Key k2 = KeyFactory.createKey(k1, ListaEventoLN.class
          .getSimpleName(), idListaEvento);
      evento = pm.getObjectById(ListaEventoLN.class, k2);

      java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(
          "dd/MM/yyyy");
      String fecha = sdf.format(evento.getFecha());
      fueraServicio = new FueraServicio(fecha, evento.getFalla()
          .getProblema(), String.valueOf(evento.getIdResponsable()),
          String.valueOf(evento.getFalla().getEquipo()));

    } catch (Exception e) {
      log.error(e.getMessage());
View Full Code Here

TOP

Related Classes of cl.loso.melon.server.pojos.FueraServicio

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.