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

pl.tkowalcz.tjahzi.log4j2.labels.LabelsDescriptor Maven / Gradle / Ivy

The newest version!
package pl.tkowalcz.tjahzi.log4j2.labels;

import java.util.Map;

public class LabelsDescriptor {

    private final String logLevelLabel;

    private final Map staticLabels;
    private final Map dynamicLabels;

    public LabelsDescriptor(
            String logLevelLabel,
            Map staticLabels,
            Map dynamicLabels
    ) {
        this.logLevelLabel = logLevelLabel;
        this.staticLabels = staticLabels;
        this.dynamicLabels = dynamicLabels;
    }

    public String getLogLevelLabel() {
        return logLevelLabel;
    }

    public Map getStaticLabels() {
        return staticLabels;
    }

    public Map getDynamicLabels() {
        return dynamicLabels;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy