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

src.main.java.com.vincomobile.fw.basic.IRuntimeEnvironmentConfig Maven / Gradle / Ivy

There is a newer version: 5.1.0-RELEASE
Show newest version
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