For whom might be interested, I have found one solution...

  | public class InformaInizioProcesso implements ActionHandler {
  |     
  |     private static final long serialVersionUID = 1L;
  |     
  |     public void execute(ExecutionContext arg0) throws Exception {
  |             
  |             Long idDocumento = (Long)arg0.getVariable("idDocumento");
  |             
  |             Renderer renderer = 
(Renderer)Component.getInstance(Renderer.class);
  |             EntityManager em  = 
(EntityManager)Component.getInstance("entityManager", true);
  |             
  |         Documento doc = (Documento) em.createQuery("select distinct d from 
Documento d where d.id = :id").setParameter("id", 
idDocumento).getSingleResult();
  |             
  |             Contexts.getEventContext().set("doc", doc);
  |             
  |         renderer.render("/mail.xhtml");
  |              
  |     }
  | 
  | }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065294#4065294

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065294
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to