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

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