KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > processes > holidays > MockActionHandler


1 /*
2  * Copyright 2001-2003 The eXo platform SARL All rights reserved.
3  * Please look at license.txt in info directory for more license detail.
4  */

5
6 package org.exoplatform.processes.holidays;
7
8 import org.jbpm.model.definition.Delegation;
9 import org.jbpm.delegation.ActionHandler;
10 import org.jbpm.delegation.ExecutionContext;
11
12 /**
13  * Created y the eXo platform team
14  * User: Benjamin Mestrallet
15  * Date: 12 mai 2004
16  */

17 public class MockActionHandler implements ActionHandler {
18   public void execute(ExecutionContext executionContext) {
19     System.out.println("MockActionHandlerCalled");
20   }
21 }
22
Popular Tags