com.github.azbh111.starter.config.RuntimeEnvironment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of app-config-spring-boot-starter Show documentation
Show all versions of app-config-spring-boot-starter Show documentation
com.github.azbh111:app-config-spring-boot-starter
The newest version!
/*
* Copyright (c) 2014-2019, Deepspring Healthcare Inc. All rights reserved.
*/
package com.github.azbh111.starter.config;
public enum RuntimeEnvironment {
test,
local,
online,
st;
private RuntimeEnvironment dataEnvironment;
RuntimeEnvironment() {
this.dataEnvironment = this;
}
RuntimeEnvironment(RuntimeEnvironment dataEnvironment) {
this.dataEnvironment = dataEnvironment;
}
public RuntimeEnvironment getDataEnvironment() {
return dataEnvironment;
}
}