/*
* JFolder, Copyright 2001-2006 Gary Steinmetz
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jfolder.workflow.lifecycle;
//base classes
import java.math.BigDecimal;
//project specific classes
import org.jfolder.workflow.model.instance.WorkflowInstance;
import org.jfolder.workflow.model.instance.WorkflowInstanceUpdates;
//other classes
/*
public class GenericJDBCWorkflowLifecycleBean {
public GenericJDBCWorkflowLifecycleBean() {
}
public WorkflowInstance getWorkflowInstance() {
WorkflowInstance outValue = null;
return outValue;
}
public BigDecimal updateWorkflowInstance(WorkflowInstanceUpdates inWiu) {
BigDecimal outValue = null;
return outValue;
}
}*/
|