All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openbp.config.modelmgr.FileSystemModelMgrConfig Maven / Gradle / Ivy

There is a newer version: 0.9.11
Show newest version
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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy