mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-06 18:30:57 +00:00
26 lines
726 B
Java
26 lines
726 B
Java
![]() |
package stirling.software.SPDF.EE;
|
||
|
|
||
|
import org.slf4j.Logger;
|
||
|
import org.slf4j.LoggerFactory;
|
||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
import org.springframework.context.annotation.Bean;
|
||
|
import org.springframework.context.annotation.Configuration;
|
||
|
import org.springframework.context.annotation.Lazy;
|
||
|
|
||
|
import stirling.software.SPDF.model.ApplicationProperties;
|
||
|
|
||
|
@Configuration
|
||
|
@Lazy
|
||
|
public class EEAppConfig {
|
||
|
|
||
|
private static final Logger logger = LoggerFactory.getLogger(EEAppConfig.class);
|
||
|
|
||
|
@Autowired ApplicationProperties applicationProperties;
|
||
|
|
||
|
@Bean(name = "RunningEE")
|
||
|
public boolean runningEnterpriseEdition() {
|
||
|
// TODO: Implement EE detection
|
||
|
return false;
|
||
|
}
|
||
|
}
|