/**
*
*/
package net.conselldemallorca.helium.jbpm3.handlers;
import org.jbpm.graph.def.ActionHandler;
import org.jbpm.graph.exe.ExecutionContext;
/**
* Handler per modificar el tÃtol d'un expedient.
*
* @author Limit Tecnologies <limit@limit.es>
*/
public interface ExpedientTitolModificarHandlerInterface extends ActionHandler {
public void execute(ExecutionContext executionContext) throws Exception;
public void setTitol(String titol);
public void setVarTitol(String varTitol);
}