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());