mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-04-03 01:17:18 +02:00
24 lines
685 B
Java
24 lines
685 B
Java
package stirling.software.SPDF.EE;
|
|
|
|
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 lombok.extern.slf4j.Slf4j;
|
|
import stirling.software.SPDF.model.ApplicationProperties;
|
|
|
|
@Configuration
|
|
@Lazy
|
|
@Slf4j
|
|
public class EEAppConfig {
|
|
|
|
@Autowired ApplicationProperties applicationProperties;
|
|
@Autowired private LicenseKeyChecker licenseKeyChecker;
|
|
|
|
@Bean(name = "runningEE")
|
|
public boolean runningEnterpriseEdition() {
|
|
return licenseKeyChecker.getEnterpriseEnabledResult();
|
|
}
|
|
}
|