org.openbp.config.modelmgr.FileSystemModelMgrConfig 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.modelmgr;
import org.openbp.core.model.modelmgr.FileSystemModelMgr;
import org.openbp.core.model.modelmgr.ModelMgr;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* Spring configuration providing file system-based model storage.
* This is the default if you access your models (including the System model!) from directories.
* Usually, this option is used for development only.
*/
@Configuration
public class FileSystemModelMgrConfig
{
@Bean
public ModelMgr modelMgr()
{
return new FileSystemModelMgr();
}
}