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

com.icthh.xm.commons.tenant.spring.config.TenantContextConfiguration Maven / Gradle / Ivy

There is a newer version: 4.0.17
Show newest version
package com.icthh.xm.commons.tenant.spring.config;

import com.icthh.xm.commons.tenant.TenantContextHolder;
import com.icthh.xm.commons.tenant.internal.DefaultTenantContextHolder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * The {@link TenantContextConfiguration} class.
 */
@Configuration
public class TenantContextConfiguration {

    @Bean
    TenantContextHolder tenantContextHolder() {
        return new DefaultTenantContextHolder();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy