argos/dmp-backend/core/src/main/java/eu/eudat/service/tenant/TenantConfiguration.java

21 lines
567 B
Java
Raw Normal View History

2024-04-01 10:16:19 +02:00
package eu.eudat.service.tenant;
2023-11-24 14:12:02 +01:00
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableConfigurationProperties(TenantProperties.class)
public class TenantConfiguration {
private final TenantProperties properties;
@Autowired
public TenantConfiguration(TenantProperties properties) {
this.properties = properties;
}
public TenantProperties getProperties() {
return properties;
}
}