org.openbp.config.PersistentProcessServerConfigBase 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.config;
import org.openbp.config.context.StandardContextObjectSerializerConfig;
import org.openbp.config.engine.EngineRunnerConfig;
import org.openbp.config.engine.StandardEngineConfig;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
/**
* Spring configuration that can be used as a basis for process servers that support persistent storage of process tokens.
*/
@Configuration
@Import(
{
StandardEngineConfig.class,
EngineRunnerConfig.class,
StandardContextObjectSerializerConfig.class
})
public class PersistentProcessServerConfigBase extends ProcessServerConfigBase
{
}