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

io.tracee.contextlogger.contextprovider.api.Profile Maven / Gradle / Ivy

There is a newer version: 0.11.0
Show newest version
package io.tracee.contextlogger.contextprovider.api;

/**
 * enum for profile level.
 */
public enum Profile {

	NONE(null),
	BASIC("TraceeContextLoggerBasicProfile.properties"),
	ENHANCED("TraceeContextLoggerEnhancedProfile.properties"),
	FULL("TraceeContextLoggerFullProfile.properties");

	private final String filename;

	Profile(final String filename) {
		this.filename = filename;
	}

	public String getFilename() {
		return this.filename;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy