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

org.entur.jwt.spring.auth0.properties.MdcProperties Maven / Gradle / Ivy

package org.entur.jwt.spring.auth0.properties;

import java.util.ArrayList;
import java.util.List;

public class MdcProperties {

    private boolean enabled = true;

    private List mappings = new ArrayList<>();

    public List getMappings() {
        return mappings;
    }

    public void setMappings(List items) {
        this.mappings = items;
    }

    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }

    public boolean isEnabled() {
        return enabled;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy