org.openbp.config.InMemoryProcessServerConfig 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.InMemoryTokenConfig;
import org.openbp.config.context.StandardContextObjectSerializerConfig;
import org.openbp.config.engine.EngineRunnerConfig;
import org.openbp.config.engine.StandardEngineConfig;
import org.openbp.config.modelmgr.ClassPathAndFileSystemModelMgrConfig;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
/**
* Spring configuration that wires a process server running processes in memory.
*/
@Configuration
@Import(
{
StandardEngineConfig.class,
EngineRunnerConfig.class,
InMemoryTokenConfig.class,
StandardContextObjectSerializerConfig.class,
ClassPathAndFileSystemModelMgrConfig.class
})
public class InMemoryProcessServerConfig extends ProcessServerConfigBase
{
}