
io.tracee.contextlogger.api.internal.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contextlogger-impl Show documentation
Show all versions of contextlogger-impl Show documentation
Please refer to https://github.com/tracee/contextlogger.
The newest version!
package io.tracee.contextlogger.api.internal;
import io.tracee.contextlogger.api.ConfigBuilder;
import io.tracee.contextlogger.profile.Profile;
import java.util.Map;
/**
* Interface for getting configuration from ConfigBuilder.
* Created by Tobias Gindler on 19.06.14.
*/
public interface Configuration extends ConfigBuilder {
/**
* Gets a map containing all manual context overrides.
*
* @return a map containing all manual context overrides
*/
Map getManualContextOverrides();
/**
* Gets the profile.
*
* @return the profile
*/
Profile getProfile();
/**
* Gets if the order must be kept
*
* @return
*/
boolean getKeepOrder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy