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-core Show documentation
Show all versions of contextlogger-core Show documentation
Please refer to https://github.com/tracee/contextlogger.
package io.tracee.contextlogger.api.internal;
import java.util.Map;
import io.tracee.contextlogger.api.ConfigBuilder;
import io.tracee.contextlogger.api.ToStringBuilder;
import io.tracee.contextlogger.contextprovider.api.Profile;
import io.tracee.contextlogger.outputgenerator.writer.OutputWriterConfiguration;
/**
* 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 getEnforceOrder();
/**
* Gets the OutputWriterConfiguration to use
*
* @return the OutputWriterConfiguration to use
*/
OutputWriterConfiguration getOutputWriterConfiguration();
}