![JAR search and dependency download from the Maven repository](/logo.png)
io.mosip.registration.constants.ActiveProfiles Maven / Gradle / Ivy
package io.mosip.registration.constants;
public enum ActiveProfiles {
DEV("dev"),
QA("qa");
/**
* Instantiates active profile.
*
* @param code the code
*/
private ActiveProfiles(String code) {
this.code=code;
}
/** The code. */
private final String code;
/**
* @return the code
*/
public String getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy