org.openbp.server.engine.ModelObjectExecutorBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openbp-server Show documentation
Show all versions of openbp-server Show documentation
The OpenBP process engine (main module)
package org.openbp.server.engine;
/**
* Abstract base class for model object executors.
*
* @author Heiko Erhardt
*/
public abstract class ModelObjectExecutorBase
implements ModelObjectExecutor
{
/** Engine */
private Engine engine;
/**
* Default constructor.
*/
public ModelObjectExecutorBase()
{
}
/**
* Gets the engine.
*/
protected Engine getEngine()
{
return engine;
}
/**
* Sets the engine.
*/
protected void setEngine(Engine engine)
{
this.engine = engine;
}
}