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

com.sap.cds.framework.spring.mt.DefaultMtFeatureConfig Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.sap.cds.framework.spring.mt;

import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class DefaultMtFeatureConfig {

	@Bean
	@ConditionalOnMissingBean
	public MtFeature mtFeature() {
		return () -> false;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy