Sorry, I think it made me understand. I do not speak English

I have the notify method, and I want to enforce the transition "send email", 
when the response variable equals "N"

As I pass the signal to the next task???........... when he comes to the 
response variable "N", run the following task


  | public void notify(EventListenerExecution execution) throws Exception {
  |             String response = execution.getVariable("response")+"";
  |             if (response.equals(null)) {
  |                     response = new String();
  |                     execution.setVariable("response", response);
  |             }
  |             ReposicionDao reposicion = new ReposicionDao();
  |             response = reposicion.verificarCarguePorReposicion(documento, 
caf);
  |             execution.setVariable("response", response);
  |             if(execution.getVariable("response").toString().equals("N")){
  |                     
  |                           ..................
  |                           //SHOULD I PUT THAT CODE
  | 
  |             }
  |     }
  | 

Thanks, excuse for my English

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

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

Reply via email to