src.main.java.com.vincomobile.fw.basic.IRuntimeEnvironmentConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vincofw-basic Show documentation
Show all versions of vincofw-basic Show documentation
Vincomobile framework (Basic components)
package com.vincomobile.fw.basic;
import org.springframework.beans.factory.annotation.Value;
public interface IRuntimeEnvironmentConfig {
String getEnvironment();
@Value("${runtime.environment}")
void setEnvironment(String enviroment);
String getExcludeProcess();
@Value("${runtime.exclude.process}")
void setExcludeProcess(String excludeProcess);
Boolean getExcludeQuartz();
@Value("${runtime.exclude.quartz}")
void setExcludeQuartz(Boolean excludeQuartz);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy